From 90abb0e951ba25b4ad33e70681b19ff7b451c42e Mon Sep 17 00:00:00 2001 From: Michael Terry Date: Fri, 17 Nov 2023 15:54:06 -0500 Subject: [PATCH] feat: add new DuckDB backend for reading ndjson directly This adds some new arguments: --db-type [athena,duckdb] (defaulting to athena) --load-ndjson-dir DIR (tells DuckDB where to find source ndjsons) A light abstraction layer has been added in databases.py to choose the correct backend based on the args. Mostly the SQL is the same. Some light tweaks for standardization, plus some compatibility user-defined functions injected into duckdb allow both backends to work on the same SQL. --- CONTRIBUTING.md | 12 + cumulus_library/base_table_builder.py | 7 +- cumulus_library/cli.py | 61 ++--- cumulus_library/cli_parser.py | 40 +++- cumulus_library/databases.py | 221 ++++++++++++++++++ .../studies/core/builder_encounter_coding.py | 2 +- .../studies/core/documentreference.sql | 4 +- cumulus_library/studies/core/patient.sql | 2 +- cumulus_library/study_parser.py | 33 ++- .../template_sql/column_datatype.sql.jinja | 2 +- cumulus_library/template_sql/count.sql.jinja | 2 +- .../template_sql/ctas_empty.sql.jinja | 4 +- .../template_sql/show_tables.sql.jinja | 7 +- .../template_sql/show_views.sql.jinja | 7 +- cumulus_library/template_sql/utils.py | 6 +- pyproject.toml | 5 +- tests/test_cli.py | 12 +- tests/test_data/duckdb_data/README.md | 4 + .../duckdb_data/condition/conditions.ndjson | 20 ++ .../duckdb_data/documentreference/docs.ndjson | 51 ++++ .../encounter/filenames.do.not.matter.ndjson | 50 ++++ .../core/core__count_condition_month.csv | 3 + .../core__count_documentreference_month.csv | 19 ++ .../core/core__count_encounter_month.csv | 65 ++++++ .../core/core__count_encounter_type.csv | 9 + .../core/core__count_encounter_type_month.csv | 25 ++ .../core__count_medicationrequest_month.csv | 13 ++ .../core__count_observation_lab_month.csv | 15 ++ .../core/core__count_patient.csv | 13 ++ .../expected_export/core/core__meta_date.csv | 2 + .../core/core__meta_version.csv | 2 + .../duckdb_data/medicationrequest/meds.ndjson | 39 ++++ .../duckdb_data/observation/obs.ndjson | 20 ++ .../patient/patient-remainder.ndjson | 49 ++++ .../duckdb_data/patient/patient1.ndjson | 1 + tests/test_duckdb.py | 42 ++++ tests/test_study_parser.py | 2 +- tests/test_template_utils.py | 59 ++--- tests/test_templates.py | 2 +- 39 files changed, 812 insertions(+), 120 deletions(-) create mode 100644 CONTRIBUTING.md create mode 100644 cumulus_library/databases.py create mode 100644 tests/test_data/duckdb_data/README.md create mode 100644 tests/test_data/duckdb_data/condition/conditions.ndjson create mode 100644 tests/test_data/duckdb_data/documentreference/docs.ndjson create mode 100644 tests/test_data/duckdb_data/encounter/filenames.do.not.matter.ndjson create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__count_condition_month.csv create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__count_documentreference_month.csv create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__count_encounter_month.csv create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__count_encounter_type.csv create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__count_encounter_type_month.csv create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__count_medicationrequest_month.csv create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__count_observation_lab_month.csv create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__count_patient.csv create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__meta_date.csv create mode 100644 tests/test_data/duckdb_data/expected_export/core/core__meta_version.csv create mode 100644 tests/test_data/duckdb_data/medicationrequest/meds.ndjson create mode 100644 tests/test_data/duckdb_data/observation/obs.ndjson create mode 100644 tests/test_data/duckdb_data/patient/patient-remainder.ndjson create mode 100644 tests/test_data/duckdb_data/patient/patient1.ndjson create mode 100644 tests/test_duckdb.py diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..56452b54 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,12 @@ +# Contributing to Cumulus Library + +## Set up your dev environment + +To use the same dev environment as us, you'll want to run these commands: +```sh +pip install .[dev] +pre-commit install +``` + +This will install dependencies & build tools, +as well as set up a `black` auto-formatter commit hook. diff --git a/cumulus_library/base_table_builder.py b/cumulus_library/base_table_builder.py index 4b6ab946..f8196578 100644 --- a/cumulus_library/base_table_builder.py +++ b/cumulus_library/base_table_builder.py @@ -4,6 +4,7 @@ from abc import ABC, abstractmethod from typing import final +from cumulus_library.databases import DatabaseCursor from cumulus_library.helper import get_progress_bar, query_console_output @@ -34,7 +35,11 @@ def prepare_queries(self, cursor: object, schema: str): @final def execute_queries( - self, cursor: object, schema: str, verbose: bool, drop_table: bool = False + self, + cursor: DatabaseCursor, + schema: str, + verbose: bool, + drop_table: bool = False, ): """Executes queries set up by a prepare_queries call diff --git a/cumulus_library/cli.py b/cumulus_library/cli.py index 9e9c0351..523f8e1d 100755 --- a/cumulus_library/cli.py +++ b/cumulus_library/cli.py @@ -9,14 +9,16 @@ from pathlib import Path, PosixPath from typing import Dict, List, Optional -import pyathena - -from pyathena.pandas.cursor import PandasCursor from rich.console import Console from rich.table import Table from cumulus_library import __version__ from cumulus_library.cli_parser import get_parser +from cumulus_library.databases import ( + AthenaDatabaseBackend, + DatabaseBackend, + create_db_backend, +) from cumulus_library.study_parser import StudyManifestParser from cumulus_library.upload import upload_files @@ -38,7 +40,10 @@ def __init__(self): def get_study_builder(self): """Convenience method for getting athena args from environment""" - return StudyBuilder(self.region, self.workgroup, self.profile, self.schema_name) + db = AthenaDatabaseBackend( + self.region, self.workgroup, self.profile, self.schema_name + ) + return StudyBuilder(db) class StudyBuilder: @@ -47,35 +52,10 @@ class StudyBuilder: verbose = False schema_name = None - def __init__( # pylint: disable=too-many-arguments - self, region: str, workgroup: str, profile: str, schema: str - ): - connect_kwargs = {} - for aws_env_name in [ - "AWS_ACCESS_KEY_ID", - "AWS_SECRET_ACCESS_KEY", - "AWS_SESSION_TOKEN", - ]: - if aws_env_val := os.environ.get(aws_env_name): - connect_kwargs[aws_env_name.lower()] = aws_env_val - # the profile may not be required, provided the above three AWS env vars - # are set. If both are present, the env vars take precedence - if profile is not None: - connect_kwargs["profile_name"] = profile - self.cursor = pyathena.connect( - region_name=region, - work_group=workgroup, - schema_name=schema, - **connect_kwargs, - ).cursor() - self.pandas_cursor = pyathena.connect( - region_name=region, - work_group=workgroup, - schema_name=schema, - cursor_class=PandasCursor, - **connect_kwargs, - ).cursor() - self.schema_name = schema + def __init__(self, db: DatabaseBackend): + self.db = db + self.cursor = db.cursor() + self.schema_name = db.schema_name def reset_data_path(self, study: PosixPath) -> None: """ @@ -163,7 +143,7 @@ def export_study(self, target: PosixPath, data_path: PosixPath) -> None: if data_path is None: sys.exit("Missing destination - please provide a path argument.") studyparser = StudyManifestParser(target) - studyparser.export_study(self.pandas_cursor, data_path) + studyparser.export_study(self.db, data_path) def export_all(self, study_dict: Dict, data_path: PosixPath): """Exports all defined count tables to disk""" @@ -248,15 +228,11 @@ def run_cli(args: Dict): # all other actions require connecting to AWS else: - builder = StudyBuilder( - args["region"], - args["workgroup"], - args["profile"], - args["schema_name"], - ) + db_backend = create_db_backend(args) + builder = StudyBuilder(db_backend) if args["verbose"]: builder.verbose = True - print("Testing connection to athena...") + print("Testing connection to database...") builder.cursor.execute("SHOW DATABASES") study_dict = get_study_dict(args["study_dir"]) @@ -297,6 +273,7 @@ def run_cli(args: Dict): for target in args["target"]: builder.export_study(study_dict[target], args["data_path"]) + db_backend.close() # returning the builder for ease of unit testing return builder @@ -319,12 +296,14 @@ def main(cli_args=None): break arg_env_pairs = ( + ("db_type", "CUMULUS_LIBRARY_DB_TYPE"), ("profile", "CUMULUS_LIBRARY_PROFILE"), ("schema_name", "CUMULUS_LIBRARY_DATABASE"), ("workgroup", "CUMULUS_LIBRARY_WORKGROUP"), ("region", "CUMULUS_LIBRARY_REGION"), ("study_dir", "CUMULUS_LIBRARY_STUDY_DIR"), ("data_path", "CUMULUS_LIBRARY_DATA_PATH"), + ("load_ndjson_dir", "CUMULUS_LIBRARY_LOAD_NDJSON_DIR"), ("user", "CUMULUS_AGGREGATOR_USER"), ("id", "CUMULUS_AGGREGATOR_ID"), ("url", "CUMULUS_AGGREGATOR_URL"), diff --git a/cumulus_library/cli_parser.py b/cumulus_library/cli_parser.py index f25005aa..5f951988 100644 --- a/cumulus_library/cli_parser.py +++ b/cumulus_library/cli_parser.py @@ -44,7 +44,7 @@ def add_data_path_argument(parser: argparse.ArgumentParser) -> None: nargs="?", help=( "The path to use for Athena counts data. " - "Can be povided via CUMULUS_LIBRARY_DATA_PATH environment variable." + "Can be provided via CUMULUS_LIBRARY_DATA_PATH environment variable." ), ) @@ -63,12 +63,6 @@ def add_aws_config(parser: argparse.ArgumentParser) -> None: """Adds arguments related to aws credentials to a subparser""" aws = parser.add_argument_group("AWS config") aws.add_argument("--profile", help="AWS profile", default="default") - aws.add_argument( - "--database", - # internally, we use PyAthena's terminology for this but the UX term is "database" - dest="schema_name", - help="Cumulus Athena database name", - ) aws.add_argument( "--workgroup", default="cumulus", @@ -81,6 +75,29 @@ def add_aws_config(parser: argparse.ArgumentParser) -> None: ) +def add_db_config(parser: argparse.ArgumentParser) -> None: + """Adds arguments related to database backends to a subparser""" + group = parser.add_argument_group("Database config") + group.add_argument( + "--db-type", + help="Which database backend to use (default athena)", + choices=["athena", "duckdb"], + default="athena", + ) + group.add_argument( + "--database", + # In Athena, we use this as the schema_name (which is also called a Database in their UX). + # In DuckDB, we use this as the path to the filename to store tables. + # Since we started as an Athena-centric codebase, we mostly keep referring to this as + # name "schema_name". But to the user, both uses are still conceptually a "database". + dest="schema_name", + help="Database name (for Athena) or file (for DuckDB)", + ) + + # Backend-specific config: + add_aws_config(parser) + + def get_parser() -> argparse.ArgumentParser: """Provides parser for handling CLI arguments""" parser = argparse.ArgumentParser( @@ -125,7 +142,7 @@ def get_parser() -> argparse.ArgumentParser: add_target_argument(clean) add_study_dir_argument(clean) add_verbose_argument(clean) - add_aws_config(clean) + add_db_config(clean) clean.add_argument( "--prefix", action="store_true", @@ -140,8 +157,11 @@ def get_parser() -> argparse.ArgumentParser: add_table_builder_argument(build) add_study_dir_argument(build) add_verbose_argument(build) - add_aws_config(build) + add_db_config(build) + build.add_argument( + "--load-ndjson-dir", help="Load ndjson files from this folder", metavar="DIR" + ) build.add_argument( "--continue", dest="continue_from", @@ -155,7 +175,7 @@ def get_parser() -> argparse.ArgumentParser: add_study_dir_argument(export) add_data_path_argument(export) add_verbose_argument(export) - add_aws_config(export) + add_db_config(export) upload = actions.add_parser( "upload", help="Bulk uploads data to Cumulus aggregator" diff --git a/cumulus_library/databases.py b/cumulus_library/databases.py new file mode 100644 index 00000000..fddc1557 --- /dev/null +++ b/cumulus_library/databases.py @@ -0,0 +1,221 @@ +"""Abstraction layers for supported database backends (e.g. AWS & DuckDB)""" + +import abc +import datetime +import json +import os +from pathlib import Path +from typing import Optional, Protocol + +import cumulus_fhir_support +import duckdb +import pandas +import pyarrow +import pyathena +from pyathena.common import BaseCursor as AthenaCursor +from pyathena.pandas.cursor import PandasCursor as AthenaPandasCursor + + +class DatabaseCursor(Protocol): + def execute(self, sql: str) -> None: + pass + + def fetchone(self) -> Optional[list]: + pass + + def fetchmany(self, size: Optional[int]) -> Optional[list[list]]: + pass + + def fetchall(self) -> Optional[list[list]]: + pass + + +class DatabaseBackend(abc.ABC): + def __init__(self, schema_name: str): + """Create connection to a database backend + + :param schema_name: the database name ('schema' is Athena-speak for a database) + """ + self.schema_name = schema_name + + @abc.abstractmethod + def cursor(self) -> DatabaseCursor: + """Returns a connection to the backing database""" + + @abc.abstractmethod + def execute_as_pandas(self, sql: str) -> pandas.DataFrame: + """Returns a pandas.DataFrame version of the results from the provided SQL""" + + def close(self) -> None: + """Clean up any resources necessary""" + + +class AthenaDatabaseBackend(DatabaseBackend): + def __init__(self, region: str, workgroup: str, profile: str, schema_name: str): + super().__init__(schema_name) + + connect_kwargs = {} + for aws_env_name in [ + "AWS_ACCESS_KEY_ID", + "AWS_SECRET_ACCESS_KEY", + "AWS_SESSION_TOKEN", + ]: + if aws_env_val := os.environ.get(aws_env_name): + connect_kwargs[aws_env_name.lower()] = aws_env_val + # the profile may not be required, provided the above three AWS env vars + # are set. If both are present, the env vars take precedence + if profile is not None: + connect_kwargs["profile_name"] = profile + + self.connection = pyathena.connect( + region_name=region, + work_group=workgroup, + schema_name=self.schema_name, + **connect_kwargs, + ) + self.pandas_cursor = self.connection.cursor(cursor=AthenaPandasCursor) + + def cursor(self) -> AthenaCursor: + return self.connection.cursor() + + def execute_as_pandas(self, sql: str) -> pandas.DataFrame: + return self.pandas_cursor.execute(sql).as_pandas() + + +class DuckDatabaseBackend(DatabaseBackend): + def __init__(self, db_file: str): + super().__init__("main") + self.connection = duckdb.connect(db_file) + + # Paper over some syntax differences between Athena and DuckDB + self.connection.create_function( + # DuckDB's version is array_to_string -- seems there is no standard here. + "array_join", + self._compat_array_join, + ) + self.connection.create_function( + # We frequently use Athena's date() function because it's easier than + # the more widely-supported way of CAST(x AS DATE). + # Rather than convert all of our SQL to the longer version, + # we'll just make our own version of date(). + "date", + self._compat_date, + None, + duckdb.typing.DATE, + ) + self.connection.create_function( + "from_iso8601_timestamp", + self._compat_from_iso8601_timestamp, + None, + duckdb.typing.TIMESTAMP_TZ, + ) + + def insert_tables(self, tables: dict[str, pyarrow.Table]) -> None: + """Ingests all ndjson data from a folder tree (often the output folder of Cumulus ETL)""" + for name, table in tables.items(): + self.connection.register(name, table) + + @staticmethod + def _compat_array_join(value: list[str], delimiter: str) -> str: + return delimiter.join(value) + + @staticmethod + def _compat_date(value: str | datetime.datetime | datetime.date) -> datetime.date: + if isinstance(value, str): + return datetime.date.fromisoformat(value) + elif isinstance(value, datetime.datetime): + return value.date() + elif isinstance(value, datetime.date): + return value + else: + raise ValueError("Unexpected date() argument:", type(value), value) + + @staticmethod + def _compat_from_iso8601_timestamp(value: str) -> datetime.datetime: + return datetime.datetime.fromisoformat(value) + + def cursor(self) -> duckdb.DuckDBPyConnection: + # Don't actually create a new connection, + # because then we'd have to re-register our json tables. + return self.connection + + def execute_as_pandas(self, sql: str) -> pandas.DataFrame: + return self.connection.execute(sql).df() + + def close(self) -> None: + self.connection.close() + + +def read_ndjson_dir(path: str) -> dict[str, pyarrow.Table]: + """Loads a directory tree of raw ndjson into schema-ful tables. + + :param path: a directory path + :returns: dictionary of table names (like 'documentreference') to table data (with schema) + """ + all_tables = {} + + # Manually specify the list of resources because we want to create each table even if the + # folder does not exist. + resources = [ + "AllergyIntolerance", + "Condition", + "Device", + "DiagnosticReport", + "DocumentReference", + "Encounter", + "Immunization", + "MedicationRequest", + "Observation", + "Patient", + "Procedure", + "ServiceRequest", + ] + for resource in resources: + table_name = resource.lower() + + # Grab filenames to load (ignoring .meta files and handling missing folders) + folder = Path(f"{path}/{table_name}") + filenames = [] + if folder.exists(): + filenames = sorted( + str(x) for x in folder.iterdir() if x.name.endswith(".ndjson") + ) + + # Read all ndjson directly into memory + rows = [] + for filename in filenames: + with open(filename, "r", encoding="utf8") as f: + for line in f: + rows.append(json.loads(line)) + + # Make a pyarrow table with full schema from the data + schema = cumulus_fhir_support.pyarrow_schema_from_rows(resource, rows) + all_tables[table_name] = pyarrow.Table.from_pylist(rows, schema) + + return all_tables + + +def create_db_backend(args: dict[str, str]) -> DatabaseBackend: + db_type = args["db_type"] + database = args["schema_name"] + load_ndjson_dir = args.get("load_ndjson_dir") + + if db_type == "duckdb": + backend = DuckDatabaseBackend(database) # `database` is path name in this case + if load_ndjson_dir: + backend.insert_tables(read_ndjson_dir(load_ndjson_dir)) + elif db_type == "athena": + backend = AthenaDatabaseBackend( + args["region"], + args["workgroup"], + args["profile"], + database, + ) + if load_ndjson_dir: + raise NotImplementedError( + "Loading an ndjson dir is not supported with --db-type=athena (try duckdb)" + ) + else: + raise ValueError(f"Unexpected --db-type value '{db_type}'") + + return backend diff --git a/cumulus_library/studies/core/builder_encounter_coding.py b/cumulus_library/studies/core/builder_encounter_coding.py index 0a3d30db..f6a9c7e9 100644 --- a/cumulus_library/studies/core/builder_encounter_coding.py +++ b/cumulus_library/studies/core/builder_encounter_coding.py @@ -43,7 +43,7 @@ def _check_data_in_fields(self, code_sources: list[dict], schema, cursor) -> dic with get_progress_bar(transient=True) as progress: task = progress.add_task( - "Detecting available encounter codaebleConcepts...", + "Detecting available encounter codeableConcepts...", # Each column in code_sources requires at most 3 queries to # detect valid data is in the DB total=len(code_sources), diff --git a/cumulus_library/studies/core/documentreference.sql b/cumulus_library/studies/core/documentreference.sql index 9a929869..337065b4 100644 --- a/cumulus_library/studies/core/documentreference.sql +++ b/cumulus_library/studies/core/documentreference.sql @@ -40,7 +40,7 @@ SELECT DISTINCT CASE WHEN type_coding.type_row.display IS NOT NULL - THEN replace(type_coding.type_row.display, ',') + THEN replace(type_coding.type_row.display, ',', '') ELSE type_row.code END AS doc_type_display, tdr.status, @@ -72,7 +72,7 @@ WITH powerset AS ( WHERE d.encounter_ref = e.encounter_ref AND d.status = 'current' - AND d.docstatus IN (NULL, 'final', 'amended') + AND (d.docstatus IS NULL OR d.docstatus IN ('final', 'amended')) GROUP BY cube(d.doc_type_display, d.author_month, e.enc_class_display) ) diff --git a/cumulus_library/studies/core/patient.sql b/cumulus_library/studies/core/patient.sql index 1e5e8410..8b1abcd9 100644 --- a/cumulus_library/studies/core/patient.sql +++ b/cumulus_library/studies/core/patient.sql @@ -10,7 +10,7 @@ WITH temp_patient AS ( ee.ethnicity_display, p.address, p.id AS subject_id, - date(concat(p.birthdate, '-01-01')) AS birthdate, + date(concat(left(p.birthdate, 4), '-01-01')) AS birthdate, concat('Patient/', p.id) AS subject_ref FROM patient AS p diff --git a/cumulus_library/study_parser.py b/cumulus_library/study_parser.py index 6fab3e05..e2e0d112 100644 --- a/cumulus_library/study_parser.py +++ b/cumulus_library/study_parser.py @@ -11,6 +11,7 @@ from rich.progress import Progress, TaskID, track from cumulus_library.base_table_builder import BaseTableBuilder +from cumulus_library.databases import DatabaseBackend, DatabaseCursor from cumulus_library.errors import StudyManifestParsingError from cumulus_library.helper import ( query_console_output, @@ -146,7 +147,7 @@ def reset_export_dir(self) -> None: # SQL related functions def clean_study( self, - cursor: object, + cursor: DatabaseCursor, schema_name: str, verbose: bool = False, prefix: str = None, @@ -158,9 +159,6 @@ def clean_study( :verbose: toggle from progress bar to query output, optional :returns: list of dropped tables (for unit testing only) :prefix: override prefix discovery with the provided prefix - - TODO: If we need to support additional databases, we may need to investigate - additional ways to get a list of table prefixes """ if not schema_name: raise ValueError("No database provided") @@ -175,13 +173,13 @@ def clean_study( view_table_list = [] for query_and_type in [[view_sql, "VIEW"], [table_sql, "TABLE"]]: cursor.execute(query_and_type[0]) - for db_row_tuple in cursor: + for db_row_tuple in cursor.fetchall(): # this check handles athena reporting views as also being tables, # so we don't waste time dropping things that don't exist if query_and_type[1] == "TABLE": if not any( - db_row_tuple[0] in query_and_type - for query_and_type in view_table_list + db_row_tuple[0] in iter_q_and_t + for iter_q_and_t in view_table_list ): view_table_list.append([db_row_tuple[0], query_and_type[1]]) else: @@ -222,7 +220,7 @@ def clean_study( def _execute_drop_queries( self, - cursor: object, + cursor: DatabaseCursor, verbose: bool, view_table_list: List, progress: Progress, @@ -298,7 +296,7 @@ def _load_and_execute_builder( del table_builder_module def run_table_builder( - self, cursor: object, schema: str, verbose: bool = False + self, cursor: DatabaseCursor, schema: str, verbose: bool = False ) -> None: """Loads modules from a manifest and executes code via BaseTableBuilder @@ -310,7 +308,7 @@ def run_table_builder( self._load_and_execute_builder(file, cursor, schema, verbose) def run_counts_builder( - self, cursor: object, schema: str, verbose: bool = False + self, cursor: DatabaseCursor, schema: str, verbose: bool = False ) -> None: """Loads counts modules from a manifest and executes code via BaseTableBuilder @@ -322,7 +320,7 @@ def run_counts_builder( self._load_and_execute_builder(file, cursor, schema, verbose) def run_single_table_builder( - self, cursor: object, schema: str, name: str, verbose: bool = False + self, cursor: DatabaseCursor, schema: str, name: str, verbose: bool = False ): """targets a single table builder to run""" if not name.endswith(".py"): @@ -330,7 +328,7 @@ def run_single_table_builder( self._load_and_execute_builder(name, cursor, schema, verbose, drop_table=True) def build_study( - self, cursor: object, verbose: bool = False, continue_from: str = None + self, cursor: DatabaseCursor, verbose: bool = False, continue_from: str = None ) -> List: """Creates tables in the schema by iterating through the sql_config.file_names @@ -373,7 +371,7 @@ def _query_error(self, query_and_filename: List, exit_message: str) -> None: def _execute_build_queries( self, - cursor: object, + cursor: DatabaseCursor, verbose: bool, queries: list, progress: Progress, @@ -435,14 +433,11 @@ def _execute_build_queries( # Database exporting functions - def export_study(self, cursor: object, data_path: PosixPath) -> List: + def export_study(self, db: DatabaseBackend, data_path: PosixPath) -> List: """Exports csvs/parquet extracts of tables listed in export_list - :param cursor: A PEP-249 compatible cursor object + :param db: A database backend :returns: list of executed queries (for unit testing only) - - TODO: If we need to support additional databases, we may need to investigate - additional ways to convert the query to a pandas object """ self.reset_export_dir() queries = [] @@ -451,7 +446,7 @@ def export_study(self, cursor: object, data_path: PosixPath) -> List: description=f"Exporting {self.get_study_prefix()} counts...", ): query = f"select * from {table}" - dataframe = cursor.execute(query).as_pandas() + dataframe = db.execute_as_pandas(query) path = Path(f"{str(data_path)}/{self.get_study_prefix()}/") path.mkdir(parents=True, exist_ok=True) dataframe = dataframe.sort_values( diff --git a/cumulus_library/template_sql/column_datatype.sql.jinja b/cumulus_library/template_sql/column_datatype.sql.jinja index a75cfc6e..8c878a48 100644 --- a/cumulus_library/template_sql/column_datatype.sql.jinja +++ b/cumulus_library/template_sql/column_datatype.sql.jinja @@ -3,4 +3,4 @@ FROM information_schema.columns WHERE table_schema = '{{ schema_name }}' AND table_name = '{{ table_name }}' - AND column_name = '{{ column_name }}' + AND LOWER(column_name) = '{{ column_name }}' diff --git a/cumulus_library/template_sql/count.sql.jinja b/cumulus_library/template_sql/count.sql.jinja index ff18116c..0570fd05 100644 --- a/cumulus_library/template_sql/count.sql.jinja +++ b/cumulus_library/template_sql/count.sql.jinja @@ -27,7 +27,7 @@ CREATE TABLE {{ table_name }} AS ( FROM {{ source_table }} {%- if fhir_resource=='document' and filter_resource %} WHERE (status = 'current') - AND d.docStatus IN (null, 'final', 'amended') + AND (d.docStatus IS null OR d.docStatus IN ('final', 'amended')) {%- elif fhir_resource=='encounter' and filter_resource %} WHERE status = 'finished' {%- elif fhir_resource=='observation' and filter_resource %} diff --git a/cumulus_library/template_sql/ctas_empty.sql.jinja b/cumulus_library/template_sql/ctas_empty.sql.jinja index 6a8c3cbb..84d08d7a 100644 --- a/cumulus_library/template_sql/ctas_empty.sql.jinja +++ b/cumulus_library/template_sql/ctas_empty.sql.jinja @@ -1,14 +1,14 @@ CREATE TABLE "{{ schema_name }}"."{{ table_name }}" AS ( SELECT * FROM ( VALUES - (( + ( {%- for col in table_cols -%} cast(NULL AS varchar) {%- if not loop.last -%} , {%- endif -%} {%- endfor -%} - )) + ) ) AS t ( diff --git a/cumulus_library/template_sql/show_tables.sql.jinja b/cumulus_library/template_sql/show_tables.sql.jinja index 4d7480b7..a40dd66c 100644 --- a/cumulus_library/template_sql/show_tables.sql.jinja +++ b/cumulus_library/template_sql/show_tables.sql.jinja @@ -1 +1,6 @@ -SHOW TABLES IN `{{ schema_name }}` '{{ prefix }}*'; +SELECT table_name +FROM information_schema.tables +WHERE + table_schema = '{{ schema_name }}' + AND table_type = 'BASE TABLE' + AND table_name LIKE '{{ prefix }}%'; diff --git a/cumulus_library/template_sql/show_views.sql.jinja b/cumulus_library/template_sql/show_views.sql.jinja index 0861e7f9..2d4e5e48 100644 --- a/cumulus_library/template_sql/show_views.sql.jinja +++ b/cumulus_library/template_sql/show_views.sql.jinja @@ -1 +1,6 @@ -SHOW VIEWS IN "{{ schema_name }}" LIKE '{{ prefix }}*'; +SELECT table_name +FROM information_schema.tables +WHERE + table_schema = '{{ schema_name }}' + AND table_type = 'VIEW' + AND table_name LIKE '{{ prefix }}%'; diff --git a/cumulus_library/template_sql/utils.py b/cumulus_library/template_sql/utils.py index d206ed27..14e7f6a0 100644 --- a/cumulus_library/template_sql/utils.py +++ b/cumulus_library/template_sql/utils.py @@ -164,12 +164,12 @@ def _check_schema_if_exists( cursor.execute(query) schema_str = str(cursor.fetchone()[0]) required_fields = [coding_element] - if allow_partial: - required_fields + ["code", "system", "display"] + if not allow_partial: + required_fields += ["code", "system", "display"] if any(x not in schema_str for x in required_fields): return False return True - except: + except Exception: return False diff --git a/pyproject.toml b/pyproject.toml index a383aeb4..fc218fed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,8 @@ name = "cumulus-library" requires-python = ">= 3.9" dependencies = [ "ctakesclient >= 1.3", + "cumulus-fhir-support >= 1", + "duckdb >= 0.9", "fhirclient >= 4.1", "Jinja2 > 3", "pandas <3, >=2.1.1", @@ -27,6 +29,7 @@ dynamic=["version"] [project.optional-dependencies] dev = [ "black", + "pre-commit", "pylint", ] test = [ @@ -37,7 +40,7 @@ test = [ [project.urls] Home = "https://smarthealthit.org/cumulus-a-universal-sidecar-for-a-smart-learning-healthcare-system/" Documentation = "https://docs.smarthealthit.org/cumulus/" -Source = "https://github.com/smart-on-fhir/cumulus-library-core" +Source = "https://github.com/smart-on-fhir/cumulus-library" [project.scripts] diff --git a/tests/test_cli.py b/tests/test_cli.py index cb5d87bf..c38550a7 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -201,10 +201,14 @@ def test_clean( ], ) def test_cli_executes_queries(mock_connect, args, cursor_calls, pandas_cursor_calls): - mock_connect.side_effect = [mock.MagicMock(), mock.MagicMock()] - builder = cli.main(cli_args=args) - assert builder.cursor.execute.call_count == cursor_calls - assert builder.pandas_cursor.execute.call_count == pandas_cursor_calls + mock_connection = mock.MagicMock() + normal_cursor = mock.MagicMock() + pandas_cursor = mock.MagicMock() + mock_connect.return_value = mock_connection + mock_connection.cursor.side_effect = [pandas_cursor, normal_cursor] + cli.main(cli_args=args) + assert normal_cursor.execute.call_count == cursor_calls + assert pandas_cursor.execute.call_count == pandas_cursor_calls @mock.patch("pathlib.PosixPath.mkdir") diff --git a/tests/test_data/duckdb_data/README.md b/tests/test_data/duckdb_data/README.md new file mode 100644 index 00000000..aa61256e --- /dev/null +++ b/tests/test_data/duckdb_data/README.md @@ -0,0 +1,4 @@ +This folder holds a small selection of results from Synthea. + +The selection is designed to be big enough to get past most of the 10-patient +bucketing cutoffs, while small enough to not overwhelm the repo with fake patient data. diff --git a/tests/test_data/duckdb_data/condition/conditions.ndjson b/tests/test_data/duckdb_data/condition/conditions.ndjson new file mode 100644 index 00000000..e5105f54 --- /dev/null +++ b/tests/test_data/duckdb_data/condition/conditions.ndjson @@ -0,0 +1,20 @@ +{"resourceType": "Condition", "id": "2902cab2-9b4c-0914-3770-375c1922b2be", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "422650009", "display": "Social isolation (finding)"}], "text": "Social isolation (finding)"}, "subject": {"reference": "Patient/24906e2c-e556-71dc-23d9-3e1d5fb08986"}, "encounter": {"reference": "Encounter/1154d05c-8727-9373-4224-25b9fdba9ab3"}, "onsetDateTime": "2018-06-14T19:57:04-04:00", "abatementDateTime": "2019-06-20T19:53:30-04:00", "recordedDate": "2018-06-14T19:57:04-04:00"} +{"resourceType": "Condition", "id": "e42a4ee4-3751-0a77-2f0e-ef23efe809e4", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "160903007", "display": "Full-time employment (finding)"}], "text": "Full-time employment (finding)"}, "subject": {"reference": "Patient/24906e2c-e556-71dc-23d9-3e1d5fb08986"}, "encounter": {"reference": "Encounter/1154d05c-8727-9373-4224-25b9fdba9ab3"}, "onsetDateTime": "2018-06-14T19:57:04-04:00", "abatementDateTime": "2019-06-20T19:53:30-04:00", "recordedDate": "2018-06-14T19:57:04-04:00"} +{"resourceType": "Condition", "id": "cd47a2f1-0790-a0bc-dc21-803a35b94f60", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "10509002", "display": "Acute bronchitis (disorder)"}], "text": "Acute bronchitis (disorder)"}, "subject": {"reference": "Patient/7f941bcc-e7b2-99e1-585f-129d0ef1c13d"}, "encounter": {"reference": "Encounter/65f8fdca-a949-80a0-8072-094e9aaee474"}, "onsetDateTime": "2018-06-17T10:52:50-04:00", "abatementDateTime": "2018-06-28T11:16:28-04:00", "recordedDate": "2018-06-17T10:52:50-04:00"} +{"resourceType": "Condition", "id": "b6f8f751-fcdc-1cb8-a1e9-58b44e06e7f5", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "73595000", "display": "Stress (finding)"}], "text": "Stress (finding)"}, "subject": {"reference": "Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4"}, "encounter": {"reference": "Encounter/299b6495-3fe7-8db3-c494-6e1ce8b7986d"}, "onsetDateTime": "2018-06-02T12:46:37-04:00", "abatementDateTime": "2018-06-30T12:41:01-04:00", "recordedDate": "2018-06-02T12:46:37-04:00"} +{"resourceType": "Condition", "id": "f1d8fe31-eafd-ab02-988c-5f9af674c005", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "160903007", "display": "Full-time employment (finding)"}], "text": "Full-time employment (finding)"}, "subject": {"reference": "Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4"}, "encounter": {"reference": "Encounter/299b6495-3fe7-8db3-c494-6e1ce8b7986d"}, "onsetDateTime": "2018-06-02T12:46:37-04:00", "abatementDateTime": "2018-06-30T12:41:01-04:00", "recordedDate": "2018-06-02T12:46:37-04:00"} +{"resourceType": "Condition", "id": "37d6e6ce-f2fe-47be-5d9b-d071ad17d6d9", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "195662009", "display": "Acute viral pharyngitis (disorder)"}], "text": "Acute viral pharyngitis (disorder)"}, "subject": {"reference": "Patient/19158de4-66a2-f70f-e3bf-4396b312c8f1"}, "encounter": {"reference": "Encounter/ed151e04-3dd6-8cb7-a3e5-777c8a8667f1"}, "onsetDateTime": "2018-06-05T22:02:28-04:00", "abatementDateTime": "2018-06-13T06:02:28-04:00", "recordedDate": "2018-06-05T22:02:28-04:00"} +{"resourceType": "Condition", "id": "16862137-0796-d625-f46a-3d0c6a04ab21", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "160903007", "display": "Full-time employment (finding)"}], "text": "Full-time employment (finding)"}, "subject": {"reference": "Patient/c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0"}, "encounter": {"reference": "Encounter/8ff1dc01-5a28-b2d8-3b42-4b7a7d539970"}, "onsetDateTime": "2018-07-15T13:22:50-04:00", "abatementDateTime": "2018-07-29T13:38:25-04:00", "recordedDate": "2018-07-15T13:22:50-04:00"} +{"resourceType": "Condition", "id": "9da05ddf-80b1-649e-84a0-716fadbc3a18", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "160903007", "display": "Full-time employment (finding)"}], "text": "Full-time employment (finding)"}, "subject": {"reference": "Patient/267fc42d-cd9e-8527-1f9e-887fe7776147"}, "encounter": {"reference": "Encounter/4c4d0730-201f-5b75-c657-8d0de09cc28f"}, "onsetDateTime": "2018-06-14T17:50:39-04:00", "abatementDateTime": "2018-07-12T17:59:00-04:00", "recordedDate": "2018-06-14T17:50:39-04:00"} +{"resourceType": "Condition", "id": "a68c48f9-294f-a8a9-254f-0c507408a7b3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "73595000", "display": "Stress (finding)"}], "text": "Stress (finding)"}, "subject": {"reference": "Patient/267fc42d-cd9e-8527-1f9e-887fe7776147"}, "encounter": {"reference": "Encounter/4c4d0730-201f-5b75-c657-8d0de09cc28f"}, "onsetDateTime": "2018-06-14T17:50:39-04:00", "abatementDateTime": "2018-07-12T17:59:00-04:00", "recordedDate": "2018-06-14T17:50:39-04:00"} +{"resourceType": "Condition", "id": "96b8e886-7711-a5c6-5d11-b885815cd605", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "33737001", "display": "Fracture of rib"}], "text": "Fracture of rib"}, "subject": {"reference": "Patient/ad3ed58a-5645-af0a-eeca-ab543123a8aa"}, "encounter": {"reference": "Encounter/03e34b19-2889-b828-792d-2a83400c55be"}, "onsetDateTime": "2018-07-19T05:10:16-04:00", "abatementDateTime": "2018-11-11T04:32:26-05:00", "recordedDate": "2018-07-19T05:10:16-04:00"} +{"resourceType": "Condition", "id": "9051f537-e64c-cf0d-381b-7d436bb5ad31", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "160903007", "display": "Full-time employment (finding)"}], "text": "Full-time employment (finding)"}, "subject": {"reference": "Patient/17fde357-dcc9-af8b-a8d3-4bd213afeb22"}, "encounter": {"reference": "Encounter/32d0ae2d-1be8-9e90-a4da-4c222abd88a9"}, "onsetDateTime": "2018-07-02T10:32:49-04:00", "abatementDateTime": "2018-08-27T10:08:06-04:00", "recordedDate": "2018-07-02T10:32:49-04:00"} +{"resourceType": "Condition", "id": "04b19227-b155-6b94-9e0b-f21fe61aa363", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "741062008", "display": "Not in labor force (finding)"}], "text": "Not in labor force (finding)"}, "subject": {"reference": "Patient/26baae20-c8c5-003a-ab6b-ebcc49be20db"}, "encounter": {"reference": "Encounter/c6ec2350-43d4-abab-2e84-4d2aadb337a7"}, "onsetDateTime": "2018-07-02T07:58:56-04:00", "abatementDateTime": "2019-07-08T08:07:48-04:00", "recordedDate": "2018-07-02T07:58:56-04:00"} +{"resourceType": "Condition", "id": "8ba53b28-7692-27db-95ee-f54c43d51ada", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "422650009", "display": "Social isolation (finding)"}], "text": "Social isolation (finding)"}, "subject": {"reference": "Patient/26baae20-c8c5-003a-ab6b-ebcc49be20db"}, "encounter": {"reference": "Encounter/c6ec2350-43d4-abab-2e84-4d2aadb337a7"}, "onsetDateTime": "2018-07-02T07:58:56-04:00", "abatementDateTime": "2020-07-13T08:09:36-04:00", "recordedDate": "2018-07-02T07:58:56-04:00"} +{"resourceType": "Condition", "id": "f6183aaf-47b5-0574-01ae-dd38641a98f0", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "160903007", "display": "Full-time employment (finding)"}], "text": "Full-time employment (finding)"}, "subject": {"reference": "Patient/a5b171a7-9b28-20e7-86a7-936ecbf55f36"}, "encounter": {"reference": "Encounter/c4605953-3103-ede6-e0c0-e0588e6f019e"}, "onsetDateTime": "2018-07-27T10:47:54-04:00", "abatementDateTime": "2019-08-02T11:00:55-04:00", "recordedDate": "2018-07-27T10:47:54-04:00"} +{"resourceType": "Condition", "id": "2326c8fc-857c-f55a-cabf-265b7f7f1e4d", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "active"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "368581000119106", "display": "Neuropathy due to type 2 diabetes mellitus (disorder)"}], "text": "Neuropathy due to type 2 diabetes mellitus (disorder)"}, "subject": {"reference": "Patient/47c37c92-5932-9cfe-66be-208556780fe0"}, "encounter": {"reference": "Encounter/b5974881-ae62-ddd6-b905-8c86c1ca9e33"}, "onsetDateTime": "2018-06-25T05:10:39-04:00", "recordedDate": "2018-06-25T05:10:39-04:00"} +{"resourceType": "Condition", "id": "12a57714-25c9-b955-bce2-5535d3f601bd", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "44465007", "display": "Sprain of ankle"}], "text": "Sprain of ankle"}, "subject": {"reference": "Patient/dffa62dc-8ec2-1cd6-ee75-f9156a5283fe"}, "encounter": {"reference": "Encounter/11381dc6-0e06-da55-0735-d1e7bbf8bb35"}, "onsetDateTime": "2018-07-15T04:49:59-04:00", "abatementDateTime": "2018-08-08T04:49:59-04:00", "recordedDate": "2018-07-15T04:49:59-04:00"} +{"resourceType": "Condition", "id": "5f42b886-36a7-811e-366e-1e35de8a1dd3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "444814009", "display": "Viral sinusitis (disorder)"}], "text": "Viral sinusitis (disorder)"}, "subject": {"reference": "Patient/f9399f0d-5401-09f3-d4ff-89b1aa51b9c8"}, "encounter": {"reference": "Encounter/6a952afd-3be5-e27e-9e05-5a1e085e34d0"}, "onsetDateTime": "2018-07-21T15:54:33-04:00", "abatementDateTime": "2018-08-09T15:54:33-04:00", "recordedDate": "2018-07-21T15:54:33-04:00"} +{"resourceType": "Condition", "id": "670d9a8e-b153-71f1-e691-f9883ad59660", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "160903007", "display": "Full-time employment (finding)"}], "text": "Full-time employment (finding)"}, "subject": {"reference": "Patient/0b052286-9534-99a8-8d5e-06c2c04a7df7"}, "encounter": {"reference": "Encounter/e5dabcb6-1d7a-7467-dbba-b864d0d5f5b0"}, "onsetDateTime": "2018-07-28T16:54:33-04:00", "abatementDateTime": "2019-08-03T17:02:59-04:00", "recordedDate": "2018-07-28T16:54:33-04:00"} +{"resourceType": "Condition", "id": "c38b2f78-33ab-e4a3-2fa4-70bcb3f5f2aa", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "160903007", "display": "Full-time employment (finding)"}], "text": "Full-time employment (finding)"}, "subject": {"reference": "Patient/3cf7af45-2bee-aa9c-d524-40b487149d60"}, "encounter": {"reference": "Encounter/d2782687-6885-037c-957d-579fbd681d2a"}, "onsetDateTime": "2018-06-13T02:37:07-04:00", "abatementDateTime": "2018-06-27T02:26:25-04:00", "recordedDate": "2018-06-13T02:37:07-04:00"} +{"resourceType": "Condition", "id": "db40e065-6d20-7d2b-c39f-1edd8cbf5f32", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-encounter-diagnosis"]}, "clinicalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "resolved"}]}, "verificationStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "confirmed"}]}, "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "encounter-diagnosis", "display": "Encounter Diagnosis"}]}], "code": {"coding": [{"system": "http://snomed.info/sct", "code": "424393004", "display": "Reports of violence in the environment (finding)"}], "text": "Reports of violence in the environment (finding)"}, "subject": {"reference": "Patient/3cf7af45-2bee-aa9c-d524-40b487149d60"}, "encounter": {"reference": "Encounter/d2782687-6885-037c-957d-579fbd681d2a"}, "onsetDateTime": "2018-06-13T02:37:07-04:00", "abatementDateTime": "2018-06-27T02:26:25-04:00", "recordedDate": "2018-06-13T02:37:07-04:00"} diff --git a/tests/test_data/duckdb_data/documentreference/docs.ndjson b/tests/test_data/duckdb_data/documentreference/docs.ndjson new file mode 100644 index 00000000..186b8a24 --- /dev/null +++ b/tests/test_data/duckdb_data/documentreference/docs.ndjson @@ -0,0 +1,51 @@ +{"resourceType": "DocumentReference", "id": "99b390f4-1bcb-21ec-85d5-85cbb74e86ae", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:a4d5cf5f-b6eb-cae4-3fc9-3fcc4f294f23"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/9eaa056b-1efc-0cc8-70ff-62c8f704cc13"}, "date": "2018-07-13T13:30:43.931-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999970798", "display": "Dr. Tamra871 Kerluke267"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|979603fb-1332-36b1-988f-21c2347aa1ad", "display": "Wichita Vet Center"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTMKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gRGVjcmVhc2VkIGluIEp1ZGdlbWVudAotIENvbmZ1c2lvbgotIEh1bmdlcgotIE1lbW9yeSBMb3NzCi0gRGVjcmVhc2VkIEF0dGVudGl2ZW5lc3MKLSBGYXRpZ3VlCgoKIyBIaXN0b3J5IG9mIFByZXNlbnQgSWxsbmVzcwpXYWxkbzUzCiBpcyBhIDgxIHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBzZXZlcmUgYW54aWV0eSAocGFuaWMpIChmaW5kaW5nKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAzIChkaXNvcmRlciksIHZpY3RpbSBvZiBpbnRpbWF0ZSBwYXJ0bmVyIGFidXNlIChmaW5kaW5nKSwgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlciksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgNCAoZGlzb3JkZXIpLCBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMiAoZGlzb3JkZXIpLCBsaW1pdGVkIHNvY2lhbCBjb250YWN0IChmaW5kaW5nKSwgbm90IGluIGxhYm9yIGZvcmNlIChmaW5kaW5nKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAxIChkaXNvcmRlciksIHJlcG9ydHMgb2YgdmlvbGVuY2UgaW4gdGhlIGVudmlyb25tZW50IChmaW5kaW5nKSwgZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBjbG9zZWQgZnJhY3R1cmUgb2YgaGlwLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKSwgc3RyZXNzIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBzaW5nbGUuIFBhdGllbnQgcXVpdCBzbW9raW5nIGF0IGFnZSAxNi4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgY29tcGxldGVkIHNvbWUgY29sbGVnZSBjb3Vyc2VzLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgTWVkaWNhcmUuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmFjZXRhbWlub3BoZW4gMzI1IG1nIC8gb3h5Y29kb25lIGh5ZHJvY2hsb3JpZGUgNSBtZyBvcmFsIHRhYmxldDsgYW1sb2RpcGluZSAyLjUgbWcgb3JhbCB0YWJsZXQ7IGluc3VsaW4gaXNvcGhhbmUsIGh1bWFuIDcwIHVudC9tbCAvIGluc3VsaW4sIHJlZ3VsYXIsIGh1bWFuIDMwIHVudC9tbCBpbmplY3RhYmxlIHN1c3BlbnNpb24gW2h1bXVsaW5dOyBnYWxhbnRhbWluZSA0IG1nIG9yYWwgdGFibGV0OyBuYXByb3hlbiBzb2RpdW0gMjIwIG1nIG9yYWwgdGFibGV0OyBhbGVuZHJvbmljIGFjaWQgMTAgbWcgb3JhbCB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBtZWRpY2F0aW9uIHJlY29uY2lsaWF0aW9uIChwcm9jZWR1cmUpCi0gc2xlZXAgYXBuZWEgYXNzZXNzbWVudCAocHJvY2VkdXJlKQpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIGluc3VsaW4gaXNvcGhhbmUsIGh1bWFuIDcwIHVudC9tbCAvIGluc3VsaW4sIHJlZ3VsYXIsIGh1bWFuIDMwIHVudC9tbCBpbmplY3RhYmxlIHN1c3BlbnNpb24gW2h1bXVsaW5dCi0gYW1sb2RpcGluZSAyLjUgbWcgb3JhbCB0YWJsZXQKLSBhbGVuZHJvbmljIGFjaWQgMTAgbWcgb3JhbCB0YWJsZXQK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/5c994000-aa78-2be5-e6cf-99f230d50c2f"}], "period": {"start": "2018-07-13T13:30:43-04:00", "end": "2018-07-13T13:45:43-04:00"}}} +{"resourceType": "DocumentReference", "id": "99d49a34-c515-23a1-c3e4-ef73c3cef727", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:b8acecdd-b75d-ce45-608c-c41828231050"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/cc9fb8e2-fe52-b72a-aebb-9d10260f121b"}, "date": "2018-07-26T19:42:29.012-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999932699", "display": "Dr. Julia241 Quintana711"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|b59d77b5-7b57-3f7e-9a76-5e0e1ef4f62d", "display": "MAKING CONNECTIONS, LLC INDIVIDUAL AND FAMILY SERVICES"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMjYKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gRGVsYXllZCBWZXJiYWwvTGFuZ3VhZ2UgU2tpbGxzCi0gUG9vciBFeWUgQ29udGFjdAoKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKQmFiZXR0ZTU3MQogaXMgYSAxMiB5ZWFyLW9sZCBub25oaXNwYW5pYyB3aGl0ZSBmZW1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiB3aGlwbGFzaCBpbmp1cnkgdG8gbmVjay4KCiMgU29jaWFsIEhpc3RvcnkKIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KCgpQYXRpZW50IGNvbWVzIGZyb20gYSBoaWdoIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KClBhdGllbnQgY3VycmVudGx5IGhhcyBCbHVlIENyb3NzIEJsdWUgU2hpZWxkLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwppYnVwcm9mZW4gMTAwIG1nIG9yYWwgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuClBhdGllbnQgd2FzIGdpdmVuIHRoZSBmb2xsb3dpbmcgaW1tdW5pemF0aW9uczogaW5mbHVlbnphLCBzZWFzb25hbCwgaW5qZWN0YWJsZSwgcHJlc2VydmF0aXZlIGZyZWUsIGhwdiwgcXVhZHJpdmFsZW50LiAKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIGRlcHJlc3Npb24gc2NyZWVuaW5nIChwcm9jZWR1cmUpCi0gZGVwcmVzc2lvbiBzY3JlZW5pbmcgdXNpbmcgcGF0aWVudCBoZWFsdGggcXVlc3Rpb25uYWlyZSBuaW5lIGl0ZW0gc2NvcmUgKHByb2NlZHVyZSkKLSBhc3Nlc3NtZW50IG9mIHN1YnN0YW5jZSB1c2UgKHByb2NlZHVyZSkKLSBhc3Nlc3NtZW50IHVzaW5nIGNhciwgcmVsYXgsIGFsb25lLCBmb3JnZXQsIGZyaWVuZHMsIHRyb3VibGUgc2NyZWVuaW5nIHRlc3QgKHByb2NlZHVyZSkKLSBhbnRpY2lwYXRvcnkgZ3VpZGFuY2UgKHByb2NlZHVyZSkK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/683b04eb-663a-849f-715f-4ccd70bf1524"}], "period": {"start": "2018-07-26T19:42:29-04:00", "end": "2018-07-26T19:57:29-04:00"}}} +{"resourceType": "DocumentReference", "id": "99e26f8b-a5a2-ad5e-713a-16266b5991a1", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:d68a3d9c-d438-719e-a9e2-f4795c935c93"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/1c498b42-61fd-6341-69c3-053f6e4fe404"}, "date": "2018-06-29T00:31:23.623-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999896399", "display": "Dr. Tiffani287 Toy286"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|658bfe6a-1b87-3ca3-9923-959fd4e14477", "display": "LIFE CARE CENTER OF BURLINGTON"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMjkKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkthbGE5ODcgS2F0bHluMjkKIGlzIGEgODMgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBsaW1pdGVkIHNvY2lhbCBjb250YWN0IChmaW5kaW5nKSwgbm90IGluIGxhYm9yIGZvcmNlIChmaW5kaW5nKSwgdW5oZWFsdGh5IGFsY29ob2wgZHJpbmtpbmcgYmVoYXZpb3IgKGZpbmRpbmcpLCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGZyYWN0dXJlIG9mIGZvcmVhcm0sIHZpY3RpbSBvZiBpbnRpbWF0ZSBwYXJ0bmVyIGFidXNlIChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgc2luZ2xlLiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMTguCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgaGFzIGNvbXBsZXRlZCBzb21lIGNvbGxlZ2UgY291cnNlcy4KUGF0aWVudCBjdXJyZW50bHkgaGFzIER1YWwgRWxpZ2libGUuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCjEwIG1sIGZ1cm9zZW1pZGUgMTAgbWcvbWwgaW5qZWN0aW9uOyBpYnVwcm9mZW4gMjAwIG1nIG9yYWwgdGFibGV0OyBmdXJvc2VtaWRlIDQwIG1nIG9yYWwgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/e613f29d-7505-6f2e-a1f5-bfbec300752d"}], "period": {"start": "2018-06-29T00:31:23-04:00", "end": "2018-06-29T00:46:23-04:00"}}} +{"resourceType": "DocumentReference", "id": "9a50a40a-8099-5ab5-0903-1ba65d8c0905", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:2b62a17c-2108-0cb0-1ede-3fd1eb75e2ff"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/24906e2c-e556-71dc-23d9-3e1d5fb08986"}, "date": "2018-06-14T19:21:26.166-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999949198", "display": "Dr. Florance664 Leannon79"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|e3963cc4-4b2d-3626-97d2-96cf2aaf50fe", "display": "HOSPITAL DISTRICT NO 6 OF HARPER COUNTY KANSAS"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTQKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClNvZmlhNDE4IE5hdGFsaWE5NjQKIGlzIGEgMjUgeWVhci1vbGQgaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2Ygbm9ybWFsIHByZWduYW5jeSwgcmlzayBhY3Rpdml0eSBpbnZvbHZlbWVudCAoZmluZGluZyksIG5vdCBpbiBsYWJvciBmb3JjZSAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgY29tcGxldGUgbWlzY2FycmlhZ2UgKGRpc29yZGVyKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgbWFycmllZC4gUGF0aWVudCBoYXMgYSBkb2N1bWVudGVkIGhpc3Rvcnkgb2Ygb3Bpb2lkIGFkZGljdGlvbi4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIGxvdyBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBhIGhpZ2ggc2Nob29sIGVkdWNhdGlvbi4KUGF0aWVudCBjdXJyZW50bHkgaGFzIE1lZGljYWlkLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwpsaXNpbm9wcmlsIDEwIG1nIG9yYWwgdGFibGV0OyBhbWxvZGlwaW5lIDIuNSBtZyBvcmFsIHRhYmxldDsgeWF6IDI4IGRheSBwYWNrCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KUGF0aWVudCBpcyBwcmVzZW50aW5nIHdpdGggZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKS4gCgojIyBQbGFuClBhdGllbnQgd2FzIGdpdmVuIHRoZSBmb2xsb3dpbmcgaW1tdW5pemF0aW9uczogaW5mbHVlbnphLCBzZWFzb25hbCwgaW5qZWN0YWJsZSwgcHJlc2VydmF0aXZlIGZyZWUuIApUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gbWVkaWNhdGlvbiByZWNvbmNpbGlhdGlvbiAocHJvY2VkdXJlKQotIGFzc2Vzc21lbnQgb2YgaGVhbHRoIGFuZCBzb2NpYWwgY2FyZSBuZWVkcyAocHJvY2VkdXJlKQotIGFzc2Vzc21lbnQgb2YgYW54aWV0eSAocHJvY2VkdXJlKQpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIGxpc2lub3ByaWwgMTAgbWcgb3JhbCB0YWJsZXQKLSBhbWxvZGlwaW5lIDIuNSBtZyBvcmFsIHRhYmxldAo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/1154d05c-8727-9373-4224-25b9fdba9ab3"}], "period": {"start": "2018-06-14T19:21:26-04:00", "end": "2018-06-14T19:57:04-04:00"}}} +{"resourceType": "DocumentReference", "id": "9ca118c6-e354-5588-3cdc-77ee3b3c8711", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:1d7ffebd-65fb-75ed-026a-fbc3b70f7d59"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/2da1bee2-2bc2-4511-84e1-42860310e2fb"}, "date": "2018-07-28T13:41:29.442-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999994699", "display": "Dr. Delcie812 Casper496"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|32aae164-8dc5-3fea-9030-8f3cfdf75437", "display": "LAWRENCE MEMORIAL HOSPITAL"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMjgKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClJvYmVuYTk5NwogaXMgYSAyMCB5ZWFyLW9sZCBub25oaXNwYW5pYyB3aGl0ZSBmZW1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIG5vcm1hbCBwcmVnbmFuY3ksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYWN1dGUgdmlyYWwgcGhhcnluZ2l0aXMgKGRpc29yZGVyKSwgYW5lbWlhIChkaXNvcmRlciksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLCBzdHJlc3MgKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQogUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIG1pZGRsZSBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBhIGhpZ2ggc2Nob29sIGVkdWNhdGlvbi4KUGF0aWVudCBjdXJyZW50bHkgaGFzIEFudGhlbS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKdHJpbmVzc2EgMjggZGF5IHBhY2sKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBldmFsdWF0aW9uIG9mIHV0ZXJpbmUgZnVuZGFsIGhlaWdodAotIGF1c2N1bHRhdGlvbiBvZiB0aGUgZmV0YWwgaGVhcnQK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/d5f342b7-017c-f2e7-8697-5a038c91518e"}], "period": {"start": "2018-07-28T13:41:29-04:00", "end": "2018-07-28T13:56:29-04:00"}}} +{"resourceType": "DocumentReference", "id": "a1b69e45-11f8-a49f-170e-32004c70e842", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:b0ec7857-bce1-709c-2853-c76033301b8f"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/5ce2e599-fb6e-9b4d-3c2e-87310619b957"}, "date": "2018-07-10T20:08:47.894-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999997593", "display": "Dr. Felix524 Rogahn59"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|19e089bf-5ece-3e47-b627-db98f75e78e0", "display": "MIAMI COUNTY MEDICAL CENTER"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTAKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gSHVuZ2VyCi0gVGluZ2xpbmcgaW4gSGFuZHMgYW5kIEZlZXQKLSBUaGlyc3QKLSBKb2ludCBQYWluCi0gRmF0aWd1ZQotIEZyZXF1ZW50IFVyaW5hdGlvbgoKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKRWR3aW43NzMKIGlzIGEgNzIgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHNldmVyZSBhbnhpZXR5IChwYW5pYykgKGZpbmRpbmcpLCBwb2x5cCBvZiBjb2xvbiwgZnJhY3R1cmUgb2YgZm9yZWFybSwgdmljdGltIG9mIGludGltYXRlIHBhcnRuZXIgYWJ1c2UgKGZpbmRpbmcpLCBtaXN1c2VzIGRydWdzIChmaW5kaW5nKSwgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDIgKGRpc29yZGVyKSwgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIG5vdCBpbiBsYWJvciBmb3JjZSAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMSAoZGlzb3JkZXIpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgc3RyZXNzIChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgbWFycmllZC4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGJpc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgaGFzIGEgaGlnaCBzY2hvb2wgZWR1Y2F0aW9uLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgTWVkaWNhcmUuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmh5ZHJvY2hsb3JvdGhpYXppZGUgMjUgbWcgb3JhbCB0YWJsZXQ7IGFjZXRhbWlub3BoZW4gMzI1IG1nIC8gb3h5Y29kb25lIGh5ZHJvY2hsb3JpZGUgNSBtZyBvcmFsIHRhYmxldDsgYW1sb2RpcGluZSAyLjUgbWcgb3JhbCB0YWJsZXQ7IGluc3VsaW4gaXNvcGhhbmUsIGh1bWFuIDcwIHVudC9tbCAvIGluc3VsaW4sIHJlZ3VsYXIsIGh1bWFuIDMwIHVudC9tbCBpbmplY3RhYmxlIHN1c3BlbnNpb24gW2h1bXVsaW5dOyAyNCBociB0YWNyb2xpbXVzIDEgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIHRhYmxldDsgbmFwcm94ZW4gc29kaXVtIDIyMCBtZyBvcmFsIHRhYmxldAoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgoKVGhlIHBhdGllbnQgd2FzIHByZXNjcmliZWQgdGhlIGZvbGxvd2luZyBtZWRpY2F0aW9uczoKLSBpbnN1bGluIGlzb3BoYW5lLCBodW1hbiA3MCB1bnQvbWwgLyBpbnN1bGluLCByZWd1bGFyLCBodW1hbiAzMCB1bnQvbWwgaW5qZWN0YWJsZSBzdXNwZW5zaW9uIFtodW11bGluXQotIGh5ZHJvY2hsb3JvdGhpYXppZGUgMjUgbWcgb3JhbCB0YWJsZXQKLSAyNCBociB0YWNyb2xpbXVzIDEgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIHRhYmxldAotIGFtbG9kaXBpbmUgMi41IG1nIG9yYWwgdGFibGV0Cg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/4b03a408-6694-88e3-0e63-3ee464ecd6cd"}], "period": {"start": "2018-07-10T20:08:47-04:00", "end": "2018-07-10T20:23:47-04:00"}}} +{"resourceType": "DocumentReference", "id": "a3964c82-0605-c2b2-97dc-0de17a1ec0ef", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:f5d1552a-dcaa-999c-21bf-d84aa4452255"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/7f941bcc-e7b2-99e1-585f-129d0ef1c13d"}, "date": "2018-06-17T10:52:50.612-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999993691", "display": "Dr. Jacques50 Quigley282"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|e56c3b54-e7ed-3f11-bebd-861072870829", "display": "SALINA REGIONAL HEALTH CENTER INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTcKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gTmFzYWwgQ29uZ2VzdGlvbgotIFNuZWV6aW5nIEZpdHMKCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClNhbmRpZTc2MAogaXMgYSA4IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIGFjdXRlIGJyb25jaGl0aXMgKGRpc29yZGVyKSwgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlcikuCgojIFNvY2lhbCBIaXN0b3J5CiBQYXRpZW50IGhhcyBuZXZlciBzbW9rZWQuCgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KClBhdGllbnQgY3VycmVudGx5IGhhcyBCbHVlIENyb3NzIEJsdWUgU2hpZWxkLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwphY2V0YW1pbm9waGVuIDMyNSBtZyBvcmFsIHRhYmxldDsgYW1veGljaWxsaW4gMjUwIG1nIC8gY2xhdnVsYW5hdGUgMTI1IG1nIG9yYWwgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KUGF0aWVudCBpcyBwcmVzZW50aW5nIHdpdGggYWN1dGUgYnJvbmNoaXRpcyAoZGlzb3JkZXIpLiAKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBtZWFzdXJlbWVudCBvZiByZXNwaXJhdG9yeSBmdW5jdGlvbiAocHJvY2VkdXJlKQpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIGFjZXRhbWlub3BoZW4gMzI1IG1nIG9yYWwgdGFibGV0ClRoZSBwYXRpZW50IHdhcyBwbGFjZWQgb24gYSBjYXJlcGxhbjoKLSByZXNwaXJhdG9yeSB0aGVyYXB5Cg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/65f8fdca-a949-80a0-8072-094e9aaee474"}], "period": {"start": "2018-06-17T10:52:50-04:00", "end": "2018-06-17T11:16:28-04:00"}}} +{"resourceType": "DocumentReference", "id": "a5231f35-ad14-580e-1888-55c1b383aa11", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:29de4d94-cb1c-ee9d-fb61-1b7f0b6b5b43"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/3ae095ec-8fe0-133b-36d4-8785a6ad8df3"}, "date": "2018-07-02T04:45:37.357-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999929398", "display": "Dr. Graham902 Mayert710"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|4a47362d-91e6-399b-a026-96e2ed15f9f3", "display": "OPTIMAL HEALTH AND WELLNESS, LLC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMDIKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClNoYW5pY2U0NzkKIGlzIGEgMTEgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgYWN1dGUgdmlyYWwgcGhhcnluZ2l0aXMgKGRpc29yZGVyKS4KCiMgU29jaWFsIEhpc3RvcnkKIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgoKUGF0aWVudCBjdXJyZW50bHkgaGFzIEFudGhlbS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKTm8gQWN0aXZlIE1lZGljYXRpb25zLgoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgpQYXRpZW50IHdhcyBnaXZlbiB0aGUgZm9sbG93aW5nIGltbXVuaXphdGlvbnM6IHRkYXAsIGluZmx1ZW56YSwgc2Vhc29uYWwsIGluamVjdGFibGUsIHByZXNlcnZhdGl2ZSBmcmVlLCBocHYsIHF1YWRyaXZhbGVudCwgbWVuaW5nb2NvY2NhbCBtY3Y0cC4gClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBtZWRpY2F0aW9uIHJlY29uY2lsaWF0aW9uIChwcm9jZWR1cmUpCg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/75312bd2-d5ac-c62e-c9df-0004783725c7"}], "period": {"start": "2018-07-02T04:45:37-04:00", "end": "2018-07-02T05:00:37-04:00"}}} +{"resourceType": "DocumentReference", "id": "a59ca653-b95d-09d2-9fa5-a1b492d85a5f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:84585486-46ff-0564-f073-83f0589e4683"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/c20e5afd-30df-ac3d-6684-cc29438a9bc4"}, "date": "2018-06-28T02:22:49.224-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999997593", "display": "Dr. Felix524 Rogahn59"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|19e089bf-5ece-3e47-b627-db98f75e78e0", "display": "MIAMI COUNTY MEDICAL CENTER"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMjgKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkNocmlzdGlhNDc3CiBpcyBhIDE0IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHJpc2sgYWN0aXZpdHkgaW52b2x2ZW1lbnQgKGZpbmRpbmcpLCBwZXJlbm5pYWwgYWxsZXJnaWMgcmhpbml0aXMuCgojIFNvY2lhbCBIaXN0b3J5CiBQYXRpZW50IGhhcyBuZXZlciBzbW9rZWQuCgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KClBhdGllbnQgY3VycmVudGx5IGhhcyBIdW1hbmEuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmVycmluIDI4IGRheSBwYWNrCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gaW50cmFtdXNjdWxhciBpbmplY3Rpb24KVGhlIHBhdGllbnQgd2FzIHByZXNjcmliZWQgdGhlIGZvbGxvd2luZyBtZWRpY2F0aW9uczoKLSAxIG1sIG1lZHJveHlwcm9nZXN0ZXJvbmUgYWNldGF0ZSAxNTAgbWcvbWwgaW5qZWN0aW9uCg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/b864bcd8-14e0-8bec-b7cc-f8629d91470e"}], "period": {"start": "2018-06-28T02:22:49-04:00", "end": "2018-06-28T02:40:48-04:00"}}} +{"resourceType": "DocumentReference", "id": "a69150c5-2fbe-2284-1eb5-e11146858a22", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:2d575058-c31b-24b3-36da-2945b6ca2945"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/9c8d8539-0b1e-73e2-b64f-83f1ea601fa4"}, "date": "2018-06-01T19:33:08.601-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999987099", "display": "Dr. Trinidad33 King743"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|375dea7e-5915-3a35-8755-c5b24126ddf9", "display": "MEMORIAL HOSPITAL"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMDEKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gSHVuZ2VyCi0gVGhpcnN0Ci0gRmF0aWd1ZQotIEZyZXF1ZW50IFVyaW5hdGlvbgoKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKRnJlZGVyaWM0NTQKIGlzIGEgNzYgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIGVuZC1zdGFnZSByZW5hbCBkaXNlYXNlIChkaXNvcmRlciksIHN0cmVwdG9jb2NjYWwgc29yZSB0aHJvYXQgKGRpc29yZGVyKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAzIChkaXNvcmRlciksIGxhY2VyYXRpb24gb2YgaGFuZCwgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlciksIHBhcnQtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAyIChkaXNvcmRlciksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDEgKGRpc29yZGVyKSwgdW5oZWFsdGh5IGFsY29ob2wgZHJpbmtpbmcgYmVoYXZpb3IgKGZpbmRpbmcpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYXdhaXRpbmcgdHJhbnNwbGFudGF0aW9uIG9mIGtpZG5leSAoc2l0dWF0aW9uKSwgc3RyZXNzIChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgc2luZ2xlLiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMTYuCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgaXMgYSBjb2xsZWdlIGdyYWR1YXRlLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgTWVkaWNhcmUuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmxpc2lub3ByaWwgMTAgbWcgb3JhbCB0YWJsZXQ7IDIgbWwgb25kYW5zZXRyb24gMiBtZy9tbCBpbmplY3Rpb247IGluc3VsaW4gaXNvcGhhbmUsIGh1bWFuIDcwIHVudC9tbCAvIGluc3VsaW4sIHJlZ3VsYXIsIGh1bWFuIDMwIHVudC9tbCBpbmplY3RhYmxlIHN1c3BlbnNpb24gW2h1bXVsaW5dOyBhc3BpcmluIDgxIG1nIG9yYWwgdGFibGV0OyBuYXByb3hlbiBzb2RpdW0gMjIwIG1nIG9yYWwgdGFibGV0OyBhbGVuZHJvbmljIGFjaWQgMTAgbWcgb3JhbCB0YWJsZXQ7IGFtb3hpY2lsbGluIDI1MCBtZyAvIGNsYXZ1bGFuYXRlIDEyNSBtZyBvcmFsIHRhYmxldDsgc2V2b2ZsdXJhbmUgMTAwMCBtZy9tbCBpbmhhbGF0aW9uIHNvbHV0aW9uOyAxIG1sIGVwb2V0aW4gYWxmYSA0MDAwIHVudC9tbCBpbmplY3Rpb24gW2Vwb2dlbl07IG1pZGF6b2xhbSAxIG1nL21sIGluamVjdGFibGUgc29sdXRpb247IDEwMCBtbCBwcm9wb2ZvbCAxMCBtZy9tbCBpbmplY3Rpb247IHJvY3Vyb25pdW0gYnJvbWlkZSAxMCBtZy9tbCBpbmplY3RhYmxlIHNvbHV0aW9uOyBoeWRyb2NobG9yb3RoaWF6aWRlIDI1IG1nIG9yYWwgdGFibGV0OyBwZW5pY2lsbGluIHYgcG90YXNzaXVtIDUwMCBtZyBvcmFsIHRhYmxldDsgMSBtbCBoZXBhcmluIHNvZGl1bSwgcG9yY2luZSA1MDAwIHVudC9tbCBpbmplY3Rpb247IDI1IG1sIHByb3RhbWluZSBzdWxmYXRlICh1c3ApIDEwIG1nL21sIGluamVjdGlvbjsgMSBtbCB0YWNyb2xpbXVzIDUgbWcvbWwgaW5qZWN0aW9uOyBhbWxvZGlwaW5lIDIuNSBtZyBvcmFsIHRhYmxldDsgMjQgaHIgdGFjcm9saW11cyAxIG1nIGV4dGVuZGVkIHJlbGVhc2Ugb3JhbCB0YWJsZXQ7IGNlZmF6b2xpbiAyMDAwIG1nIGluamVjdGlvbjsgNSBtbCBzdWZlbnRhbmlsIDAuMDUgbWcvbWwgaW5qZWN0aW9uCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gcmVuYWwgZGlzb3JkZXIgbWVkaWNhdGlvbiByZXZpZXcgKHByb2NlZHVyZSkKLSB0cmFuc3BsYW50YXRpb24gb2Yga2lkbmV5IHJlZ2ltZSAocmVnaW1lL3RoZXJhcHkpClRoZSBwYXRpZW50IHdhcyBwcmVzY3JpYmVkIHRoZSBmb2xsb3dpbmcgbWVkaWNhdGlvbnM6Ci0gMSBtbCB0YWNyb2xpbXVzIDUgbWcvbWwgaW5qZWN0aW9uCg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/f2752dd7-1bf1-739d-dd8c-40122d0b63bc"}], "period": {"start": "2018-06-01T19:33:08-04:00", "end": "2018-06-01T21:11:27-04:00"}}} +{"resourceType": "DocumentReference", "id": "a7115116-f8da-3960-e3ed-f1f0d89646c3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:3f80b093-90f3-2c4f-5abc-a7153d5ac7e3"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4"}, "date": "2018-06-02T11:55:39.231-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999994699", "display": "Dr. Delcie812 Casper496"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|32aae164-8dc5-3fea-9030-8f3cfdf75437", "display": "LAWRENCE MEMORIAL HOSPITAL"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMDIKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gVGhpcnN0Ci0gRnJlcXVlbnQgVXJpbmF0aW9uCgoKIyBIaXN0b3J5IG9mIFByZXNlbnQgSWxsbmVzcwpIdWdvNjkzCiBpcyBhIDI5IHllYXItb2xkIGhpc3BhbmljIGJsYWNrIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgc3RyZXNzIChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgbWFycmllZC4gUGF0aWVudCBoYXMgYSBkb2N1bWVudGVkIGhpc3Rvcnkgb2Ygb3Bpb2lkIGFkZGljdGlvbi4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIGhpZ2ggc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgY29tcGxldGVkIHNvbWUgY29sbGVnZSBjb3Vyc2VzLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgVW5pdGVkSGVhbHRoY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKaHlkcm9jaGxvcm90aGlhemlkZSAyNSBtZyBvcmFsIHRhYmxldDsgYW1sb2RpcGluZSAyLjUgbWcgb3JhbCB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgpQYXRpZW50IGlzIHByZXNlbnRpbmcgd2l0aCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZykuIAoKIyMgUGxhbgoKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIG1lZGljYXRpb24gcmVjb25jaWxpYXRpb24gKHByb2NlZHVyZSkKLSBhc3Nlc3NtZW50IG9mIGhlYWx0aCBhbmQgc29jaWFsIGNhcmUgbmVlZHMgKHByb2NlZHVyZSkKLSBkZXByZXNzaW9uIHNjcmVlbmluZyAocHJvY2VkdXJlKQotIGRlcHJlc3Npb24gc2NyZWVuaW5nIHVzaW5nIHBhdGllbnQgaGVhbHRoIHF1ZXN0aW9ubmFpcmUgdHdvLWl0ZW0gc2NvcmUgKHByb2NlZHVyZSkKVGhlIHBhdGllbnQgd2FzIHByZXNjcmliZWQgdGhlIGZvbGxvd2luZyBtZWRpY2F0aW9uczoKLSBoeWRyb2NobG9yb3RoaWF6aWRlIDI1IG1nIG9yYWwgdGFibGV0Ci0gYW1sb2RpcGluZSAyLjUgbWcgb3JhbCB0YWJsZXQK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/299b6495-3fe7-8db3-c494-6e1ce8b7986d"}], "period": {"start": "2018-06-02T11:55:39-04:00", "end": "2018-06-02T12:46:37-04:00"}}} +{"resourceType": "DocumentReference", "id": "a79da4dd-83bc-5b6a-db34-bd35b3acbd2c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:dedb204f-f3f1-3ded-e9e1-1e5c2c37b0d0"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/19158de4-66a2-f70f-e3bf-4396b312c8f1"}, "date": "2018-06-05T22:02:28.513-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999977694", "display": "Dr. Shelby741 Shields502"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|b3f43d2d-d6b3-3087-9567-fb1ff9a9ef3a", "display": "HOSPITAL DISTRICT NO 1 CRAWFORD COUNTY"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMDUKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gU2hvcnRuZXNzIG9mIEJyZWF0aAoKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKVGF3YW5kYTE1NiBLZW5uZXRoNjcxCiBpcyBhIDU3IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIGFjdXRlIGJyb25jaGl0aXMgKGRpc29yZGVyKSwgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBhY3V0ZSBiYWN0ZXJpYWwgc2ludXNpdGlzIChkaXNvcmRlciksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIHZpY3RpbSBvZiBpbnRpbWF0ZSBwYXJ0bmVyIGFidXNlIChmaW5kaW5nKSwgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlciksIHN0cmVzcyAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIHNpbmdsZS4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIGhpZ2ggc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBpcyBhIGNvbGxlZ2UgZ3JhZHVhdGUuClBhdGllbnQgY3VycmVudGx5IGhhcyBCbHVlIENyb3NzIEJsdWUgU2hpZWxkLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwphY2V0YW1pbm9waGVuIDIxLjcgbWcvbWwgLyBkZXh0cm9tZXRob3JwaGFuIGh5ZHJvYnJvbWlkZSAxIG1nL21sIC8gZG94eWxhbWluZSBzdWNjaW5hdGUgMC40MTcgbWcvbWwgb3JhbCBzb2x1dGlvbjsgMTIwIGFjdHVhdCBmbHV0aWNhc29uZSBwcm9waW9uYXRlIDAuMDQ0IG1nL2FjdHVhdCBtZXRlcmVkIGRvc2UgaW5oYWxlciBbZmxvdmVudF07IGFsYnV0ZXJvbCAwLjIxIG1nL21sIGluaGFsYXRpb24gc29sdXRpb24KCiMgQXNzZXNzbWVudCBhbmQgUGxhbgpQYXRpZW50IGlzIHByZXNlbnRpbmcgd2l0aCBhY3V0ZSB2aXJhbCBwaGFyeW5naXRpcyAoZGlzb3JkZXIpLiAKCiMjIFBsYW4KCg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/ed151e04-3dd6-8cb7-a3e5-777c8a8667f1"}], "period": {"start": "2018-06-05T22:02:28-04:00", "end": "2018-06-05T22:17:28-04:00"}}} +{"resourceType": "DocumentReference", "id": "a95df5ea-7005-9e98-e97a-1ade6967b585", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:0e184e0a-8538-be4d-ac97-7a4d62e0c1d1"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/16be855b-ece2-8b96-1ef9-a4d93adf3289"}, "date": "2018-06-16T19:51:47.918-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999899799", "display": "Dr. Ted955 O'Connell601"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|1d2da245-51a6-3901-a7ab-37a415608abd", "display": "LAWRENCE PRESBYTERIAN MANOR"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTYKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gQmx1cnJlZCBWaXNpb24KLSBUaW5nbGluZyBpbiBIYW5kcyBhbmQgRmVldAotIFRoaXJzdAotIEZhdGlndWUKLSBGcmVxdWVudCBVcmluYXRpb24KCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkhlcnNjaGVsNTc0CiBpcyBhIDY4IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGFjdXRlIGJyb25jaGl0aXMgKGRpc29yZGVyKSwgc2V2ZXJlIGFueGlldHkgKHBhbmljKSAoZmluZGluZyksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgb3RpdGlzIG1lZGlhLCB2aWN0aW0gb2YgaW50aW1hdGUgcGFydG5lciBhYnVzZSAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIG1hcnJpZWQuIFBhdGllbnQgaGFzIGEgZG9jdW1lbnRlZCBoaXN0b3J5IG9mIG9waW9pZCBhZGRpY3Rpb24uIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBsb3cgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgYSBoaWdoIHNjaG9vbCBlZHVjYXRpb24uClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKYWNldGFtaW5vcGhlbiAzMjUgbWcgb3JhbCB0YWJsZXQ7IHNpbXZhc3RhdGluIDEwIG1nIG9yYWwgdGFibGV0OyAyNCBociBtZXRmb3JtaW4gaHlkcm9jaGxvcmlkZSA1MDAgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIHRhYmxldDsgaHlkcm9jaGxvcm90aGlhemlkZSAyNSBtZyBvcmFsIHRhYmxldDsgYW1veGljaWxsaW4gMjUwIG1nIG9yYWwgY2Fwc3VsZTsgaW5zdWxpbiBpc29waGFuZSwgaHVtYW4gNzAgdW50L21sIC8gaW5zdWxpbiwgcmVndWxhciwgaHVtYW4gMzAgdW50L21sIGluamVjdGFibGUgc3VzcGVuc2lvbiBbaHVtdWxpbl07IGlidXByb2ZlbiAyMDAgbWcgb3JhbCB0YWJsZXQ7IGZ1cm9zZW1pZGUgNDAgbWcgb3JhbCB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KCg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/83d0d564-3bbf-48eb-7445-bd2b81130671"}], "period": {"start": "2018-06-16T19:51:47-04:00", "end": "2018-06-17T04:51:47-04:00"}}} +{"resourceType": "DocumentReference", "id": "a96ba3b7-a461-5849-1881-d372e0460ccc", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:cc62de95-4b86-f78d-b3ca-5b2bdbd4da53"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/26a3984f-b2a8-e67f-7abc-ff147a0e6e35"}, "date": "2018-07-14T15:28:20.601-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999970897", "display": "Dr. Thanh759 Cartwright189"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|18f1149f-e874-31bc-93c6-da6dadd199b9", "display": "Manhattan Vet Center"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTQKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gVGhpcnN0Ci0gdXJpbmFyeSBmcmVxdWVuY3kKLSBGYXRpZ3VlCi0gRnJlcXVlbnQgVXJpbmF0aW9uCgoKIyBIaXN0b3J5IG9mIFByZXNlbnQgSWxsbmVzcwpBbnRvbmlhMzAKIGlzIGEgNzYgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMyAoZGlzb3JkZXIpLCBsYWNlcmF0aW9uIG9mIGZvcmVhcm0sIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgNCAoZGlzb3JkZXIpLCBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMiAoZGlzb3JkZXIpLCBsaW1pdGVkIHNvY2lhbCBjb250YWN0IChmaW5kaW5nKSwgbm90IGluIGxhYm9yIGZvcmNlIChmaW5kaW5nKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAxIChkaXNvcmRlciksIHJlcG9ydHMgb2YgdmlvbGVuY2UgaW4gdGhlIGVudmlyb25tZW50IChmaW5kaW5nKSwgZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBhd2FpdGluZyB0cmFuc3BsYW50YXRpb24gb2Yga2lkbmV5IChzaXR1YXRpb24pLCBzdHJlc3MgKGZpbmRpbmcpLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBzaW5nbGUuIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBpcyBhIGNvbGxlZ2UgZ3JhZHVhdGUuClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKbGlzaW5vcHJpbCAxMCBtZyBvcmFsIHRhYmxldDsgMSBtbCBlcG9ldGluIGFsZmEgNDAwMCB1bnQvbWwgaW5qZWN0aW9uIFtlcG9nZW5dOyBzaW12YXN0YXRpbiAxMCBtZyBvcmFsIHRhYmxldDsgaW5zdWxpbiBpc29waGFuZSwgaHVtYW4gNzAgdW50L21sIC8gaW5zdWxpbiwgcmVndWxhciwgaHVtYW4gMzAgdW50L21sIGluamVjdGFibGUgc3VzcGVuc2lvbiBbaHVtdWxpbl07IG5hcHJveGVuIHNvZGl1bSAyMjAgbWcgb3JhbCB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSByZW5hbCBkaWFseXNpcyAocHJvY2VkdXJlKQpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIDEgbWwgZXBvZXRpbiBhbGZhIDQwMDAgdW50L21sIGluamVjdGlvbiBbZXBvZ2VuXQo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/79d8f213-7847-646b-8a66-5da208cc1c27"}], "period": {"start": "2018-07-14T15:28:20-04:00", "end": "2018-07-14T18:04:20-04:00"}}} +{"resourceType": "DocumentReference", "id": "ac0439bc-e450-d339-da6d-5ead96d8b346", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:64e19eb5-8c52-221b-02f7-efb18df7ef3f"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/2858705f-5af1-9869-4d94-894e09a9f99a"}, "date": "2018-07-30T14:20:11.710-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999942599", "display": "Dr. Regenia619 Bosco882"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|ec7dadfd-1c05-334c-a34d-7a6c92b64d40", "display": "NORTHWEST FAMILY PHYSICIANS, LLC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMzAKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkFsYmVydDMxMgogaXMgYSAzIHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBhY3V0ZSB2aXJhbCBwaGFyeW5naXRpcyAoZGlzb3JkZXIpLCB2aXJhbCBzaW51c2l0aXMgKGRpc29yZGVyKS4KCiMgU29jaWFsIEhpc3RvcnkKIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgoKUGF0aWVudCBjdXJyZW50bHkgaGFzIEFudGhlbS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKTm8gQWN0aXZlIE1lZGljYXRpb25zLgoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgoKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIG1lZGljYXRpb24gcmVjb25jaWxpYXRpb24gKHByb2NlZHVyZSkK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/de9d67de-6ae3-32f7-20f2-e719ae23a9a3"}], "period": {"start": "2018-07-30T14:20:11-04:00", "end": "2018-07-30T14:35:11-04:00"}}} +{"resourceType": "DocumentReference", "id": "ad2bee76-6e59-5d8b-21ed-b30cdb784198", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:3ff6b038-5d3b-7250-d2c4-5414deca0a88"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/e455ca3f-fc16-6ffc-297a-adc27e2db183"}, "date": "2018-07-09T09:23:51.812-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995092", "display": "Dr. Cristi782 Leannon79"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|a48fd0a0-3960-31bf-b63c-9c82840df767", "display": "ASCENSION VIA CHRISTI HOSPITAL PITTSBURG INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMDkKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gU2ludXMgUGFpbgotIFNvcmUgVGhyb2F0Ci0gRmFjaWFsIFN3ZWxsaW5nCi0gSHVuZ2VyCi0gVGhpcnN0Ci0gUGFpbiB3aXRoIEJyaWdodCBMaWdodHMKLSBOYXNhbCBEaXNjaGFyZ2UKLSBGYXRpZ3VlCi0gRmV2ZXIKLSBGcmVxdWVudCBVcmluYXRpb24KCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClJvZHJpZ28yNDIKIGlzIGEgODkgeWVhci1vbGQgaGlzcGFuaWMgd2hpdGUgbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHBhcnQtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYWN1dGUgYnJvbmNoaXRpcyAoZGlzb3JkZXIpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDMgKGRpc29yZGVyKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAyIChkaXNvcmRlciksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYWN1dGUgdmlyYWwgcGhhcnluZ2l0aXMgKGRpc29yZGVyKSwgdmljdGltIG9mIGludGltYXRlIHBhcnRuZXIgYWJ1c2UgKGZpbmRpbmcpLCBzdHJlc3MgKGZpbmRpbmcpLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBtYXJyaWVkLiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMTcuCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgaGFzIGNvbXBsZXRlZCBzb21lIGNvbGxlZ2UgY291cnNlcy4KUGF0aWVudCBjdXJyZW50bHkgaGFzIE1lZGljYXJlLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwp3YXJmYXJpbiBzb2RpdW0gNSBtZyBvcmFsIHRhYmxldDsgYWNldGFtaW5vcGhlbiAyMS43IG1nL21sIC8gZGV4dHJvbWV0aG9ycGhhbiBoeWRyb2Jyb21pZGUgMSBtZy9tbCAvIGRveHlsYW1pbmUgc3VjY2luYXRlIDAuNDE3IG1nL21sIG9yYWwgc29sdXRpb247IGh5ZHJvY2hsb3JvdGhpYXppZGUgMjUgbWcgb3JhbCB0YWJsZXQ7IHZlcmFwYW1pbCBoeWRyb2NobG9yaWRlIDgwIG1nIG9yYWwgdGFibGV0OyBkaWdveGluIDAuMTI1IG1nIG9yYWwgdGFibGV0OyBhc3BpcmluIDgxIG1nIG9yYWwgdGFibGV0OyAyNCBociB0YWNyb2xpbXVzIDEgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIHRhYmxldAoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgoKVGhlIHBhdGllbnQgd2FzIHByZXNjcmliZWQgdGhlIGZvbGxvd2luZyBtZWRpY2F0aW9uczoKLSB2ZXJhcGFtaWwgaHlkcm9jaGxvcmlkZSA4MCBtZyBvcmFsIHRhYmxldAotIGRpZ294aW4gMC4xMjUgbWcgb3JhbCB0YWJsZXQKLSBoeWRyb2NobG9yb3RoaWF6aWRlIDI1IG1nIG9yYWwgdGFibGV0Ci0gMjQgaHIgdGFjcm9saW11cyAxIG1nIGV4dGVuZGVkIHJlbGVhc2Ugb3JhbCB0YWJsZXQKLSB3YXJmYXJpbiBzb2RpdW0gNSBtZyBvcmFsIHRhYmxldAo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/98d4bd14-d78e-debb-e7dc-2df7786aedf3"}], "period": {"start": "2018-07-09T09:23:51-04:00", "end": "2018-07-09T09:38:51-04:00"}}} +{"resourceType": "DocumentReference", "id": "b1f5c114-8e28-08c0-0193-0855aa10c97f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:b6566895-4aab-272d-9e79-e5ad62951ad6"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/c7c5c028-f1fb-962b-8db2-dfd4c6d6b02a"}, "date": "2018-07-02T04:32:30.023-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999994491", "display": "Dr. Carlton317 Koch169"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|6309bc08-9f17-3d65-9975-1a7e7323ad9b", "display": "ASCENSION VIA CHRISTI HOSPITALS WICHITA INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMDIKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gU2ludXMgUGFpbgotIEhlYWRhY2hlCi0gUGFpbiB3aXRoIEJyaWdodCBMaWdodHMKLSBOYXNhbCBEaXNjaGFyZ2UKLSBGYXRpZ3VlCi0gU29yZSBUaHJvYXQKLSBIdW5nZXIKLSBUaGlyc3QKCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkNoYWR3aWNrNzIyCiBpcyBhIDQ5IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDQgKGRpc29yZGVyKSwgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDMgKGRpc29yZGVyKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAyIChkaXNvcmRlciksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCB1bmhlYWx0aHkgYWxjb2hvbCBkcmlua2luZyBiZWhhdmlvciAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMSAoZGlzb3JkZXIpLCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGF3YWl0aW5nIHRyYW5zcGxhbnRhdGlvbiBvZiBraWRuZXkgKHNpdHVhdGlvbiksIHN0cmVzcyAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIHNpbmdsZS4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkIGFuZCBpcyBhbiBhbGNvaG9saWMuCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgaGFzIGNvbXBsZXRlZCBzb21lIGNvbGxlZ2UgY291cnNlcy4KUGF0aWVudCBjdXJyZW50bHkgaGFzIEFldG5hLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwpsaXNpbm9wcmlsIDEwIG1nIG9yYWwgdGFibGV0OyBoeWRyb2NobG9yb3RoaWF6aWRlIDI1IG1nIG9yYWwgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gcmVuYWwgZGlhbHlzaXMgKHByb2NlZHVyZSkK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/aa890974-162f-5906-dc71-2bb6d2185314"}], "period": {"start": "2018-07-02T04:32:30-04:00", "end": "2018-07-02T07:00:30-04:00"}}} +{"resourceType": "DocumentReference", "id": "b2896621-57ef-1ad3-91c5-389dce96973b", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:e15cd4f5-e8c7-1bf5-30eb-a9e575c30370"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/ac91b90d-97e4-4fc5-41cd-036bac49e6e8"}, "date": "2018-07-07T02:21:46.792-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|97ec0051-f3fb-3876-9f88-4c335d090345", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMDcKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gUnVubnkvU3R1ZmZ5IE5vc2UKLSBTd29sbGVuIEx5bXBoIE5vZGVzCi0gQ29uZnVzaW9uCi0gQmx1cnJlZCBWaXNpb24KLSBIdW5nZXIKLSBUaGlyc3QKLSB1cmluYXJ5IGZyZXF1ZW5jeQotIEZhdGlndWUKLSBDb3VnaAotIEZldmVyCi0gU3dvbGxlbiBUb25zaWxzCgoKIyBIaXN0b3J5IG9mIFByZXNlbnQgSWxsbmVzcwpNYW4xMTQKIGlzIGEgOTAgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHBhcnQtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgc2V2ZXJlIGFueGlldHkgKHBhbmljKSAoZmluZGluZyksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgdmljdGltIG9mIGludGltYXRlIHBhcnRuZXIgYWJ1c2UgKGZpbmRpbmcpLCB2aXJhbCBzaW51c2l0aXMgKGRpc29yZGVyKSwgbWlzdXNlcyBkcnVncyAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIG1hcnJpZWQuIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgY29tcGxldGVkIHNvbWUgY29sbGVnZSBjb3Vyc2VzLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgTWVkaWNhcmUuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCjI0IGhyIG1ldGZvcm1pbiBoeWRyb2NobG9yaWRlIDUwMCBtZyBleHRlbmRlZCByZWxlYXNlIG9yYWwgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIDI0IGhyIG1ldGZvcm1pbiBoeWRyb2NobG9yaWRlIDUwMCBtZyBleHRlbmRlZCByZWxlYXNlIG9yYWwgdGFibGV0Cg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/dc5ed645-3979-e765-3e03-6ba2173027c3"}], "period": {"start": "2018-07-07T02:21:46-04:00", "end": "2018-07-07T02:36:46-04:00"}}} +{"resourceType": "DocumentReference", "id": "b3357397-9f4c-7d00-06af-18f03c63d583", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:057d30b8-0550-1d28-b090-d3a3159a8c5c"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0"}, "date": "2018-07-15T12:48:03.499-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999989491", "display": "Dr. Claudia969 Salda\u00f1a5"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|a7648ddf-8655-35be-9eae-7347639edf96", "display": "MAO LEAWOOD SURGERY CENTER LLC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTUKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gSHVuZ2VyCi0gRnJlcXVlbnQgVXJpbmF0aW9uCgoKIyBIaXN0b3J5IG9mIFByZXNlbnQgSWxsbmVzcwpEb3J0aGVhNDkgSnVsZW5lMTY1CiBpcyBhIDU1IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHdoaXBsYXNoIGluanVyeSB0byBuZWNrLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDMgKGRpc29yZGVyKSwgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlciksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgNCAoZGlzb3JkZXIpLCBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGFjdXRlIGJyb25jaGl0aXMgKGRpc29yZGVyKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAyIChkaXNvcmRlciksIG5vdCBpbiBsYWJvciBmb3JjZSAoZmluZGluZyksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCB1bmhlYWx0aHkgYWxjb2hvbCBkcmlua2luZyBiZWhhdmlvciAoZmluZGluZyksIHJlcG9ydHMgb2YgdmlvbGVuY2UgaW4gdGhlIGVudmlyb25tZW50IChmaW5kaW5nKSwgZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBhd2FpdGluZyB0cmFuc3BsYW50YXRpb24gb2Yga2lkbmV5IChzaXR1YXRpb24pLCBlc2NoZXJpY2hpYSBjb2xpIHVyaW5hcnkgdHJhY3QgaW5mZWN0aW9uLCBzdHJlc3MgKGZpbmRpbmcpLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBtYXJyaWVkLiBQYXRpZW50IGhhcyBuZXZlciBzbW9rZWQuCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgaGlnaCBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBjb21wbGV0ZWQgc29tZSBjb2xsZWdlIGNvdXJzZXMuClBhdGllbnQgY3VycmVudGx5IGhhcyBBZXRuYS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKbGlzaW5vcHJpbCAxMCBtZyBvcmFsIHRhYmxldDsgbmF0YXppYSAyOCBkYXkgcGFjazsgYWNldGFtaW5vcGhlbiAyMS43IG1nL21sIC8gZGV4dHJvbWV0aG9ycGhhbiBoeWRyb2Jyb21pZGUgMSBtZy9tbCAvIGRveHlsYW1pbmUgc3VjY2luYXRlIDAuNDE3IG1nL21sIG9yYWwgc29sdXRpb247IG5pdHJvZnVyYW50b2luIDUgbWcvbWwgb3JhbCBzdXNwZW5zaW9uOyBoeWRyb2NobG9yb3RoaWF6aWRlIDI1IG1nIG9yYWwgdGFibGV0OyBwaGVuYXpvcHlyaWRpbmUgaHlkcm9jaGxvcmlkZSAxMDAgbWcgb3JhbCB0YWJsZXQ7IGlidXByb2ZlbiAyMDAgbWcgb3JhbCB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgpQYXRpZW50IGlzIHByZXNlbnRpbmcgd2l0aCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZykuIAoKIyMgUGxhbgoKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIGFzc2Vzc21lbnQgb2YgaGVhbHRoIGFuZCBzb2NpYWwgY2FyZSBuZWVkcyAocHJvY2VkdXJlKQotIGRlcHJlc3Npb24gc2NyZWVuaW5nIChwcm9jZWR1cmUpCi0gZGVwcmVzc2lvbiBzY3JlZW5pbmcgdXNpbmcgcGF0aWVudCBoZWFsdGggcXVlc3Rpb25uYWlyZSB0d28taXRlbSBzY29yZSAocHJvY2VkdXJlKQotIGFzc2Vzc21lbnQgb2Ygc3Vic3RhbmNlIHVzZSAocHJvY2VkdXJlKQotIHNjcmVlbmluZyBmb3IgZHJ1ZyBhYnVzZSAocHJvY2VkdXJlKQpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIGh5ZHJvY2hsb3JvdGhpYXppZGUgMjUgbWcgb3JhbCB0YWJsZXQKLSBsaXNpbm9wcmlsIDEwIG1nIG9yYWwgdGFibGV0Cg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/8ff1dc01-5a28-b2d8-3b42-4b7a7d539970"}], "period": {"start": "2018-07-15T12:48:03-04:00", "end": "2018-07-15T13:22:50-04:00"}}} +{"resourceType": "DocumentReference", "id": "b339c2e8-35eb-1838-7eea-5a04c81695df", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:47490f2d-2069-3526-2adb-549cd532ab39"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/267fc42d-cd9e-8527-1f9e-887fe7776147"}, "date": "2018-06-14T17:14:11.600-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|97ec0051-f3fb-3876-9f88-4c335d090345", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTQKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gSHVuZ2VyCi0gRmF0aWd1ZQotIEZyZXF1ZW50IFVyaW5hdGlvbgoKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKQXVkcmV5Njc4IEJyZWFubmE1ODEKIGlzIGEgNTkgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBzZXZlcmUgYW54aWV0eSAocGFuaWMpIChmaW5kaW5nKSwgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIG5vdCBpbiBsYWJvciBmb3JjZSAoZmluZGluZyksIHJlcG9ydHMgb2YgdmlvbGVuY2UgaW4gdGhlIGVudmlyb25tZW50IChmaW5kaW5nKSwgZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBhY3V0ZSB2aXJhbCBwaGFyeW5naXRpcyAoZGlzb3JkZXIpLCB2aWN0aW0gb2YgaW50aW1hdGUgcGFydG5lciBhYnVzZSAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLCBzdHJlc3MgKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIHNpbmdsZS4gUGF0aWVudCBoYXMgYSBkb2N1bWVudGVkIGhpc3Rvcnkgb2Ygb3Bpb2lkIGFkZGljdGlvbi4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIGxvdyBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBhIGhpZ2ggc2Nob29sIGVkdWNhdGlvbi4KUGF0aWVudCBjdXJyZW50bHkgaGFzIE5PIElOU1VSQU5DRS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKbGlzaW5vcHJpbCAxMCBtZyBvcmFsIHRhYmxldDsgaHlkcm9jaGxvcm90aGlhemlkZSAyNSBtZyBvcmFsIHRhYmxldDsgaW5zdWxpbiBpc29waGFuZSwgaHVtYW4gNzAgdW50L21sIC8gaW5zdWxpbiwgcmVndWxhciwgaHVtYW4gMzAgdW50L21sIGluamVjdGFibGUgc3VzcGVuc2lvbiBbaHVtdWxpbl0KCiMgQXNzZXNzbWVudCBhbmQgUGxhbgpQYXRpZW50IGlzIHByZXNlbnRpbmcgd2l0aCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZykuIAoKIyMgUGxhbgoKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIG1lZGljYXRpb24gcmVjb25jaWxpYXRpb24gKHByb2NlZHVyZSkKLSBhc3Nlc3NtZW50IG9mIGhlYWx0aCBhbmQgc29jaWFsIGNhcmUgbmVlZHMgKHByb2NlZHVyZSkKLSBhc3Nlc3NtZW50IG9mIGFueGlldHkgKHByb2NlZHVyZSkKLSBkZXByZXNzaW9uIHNjcmVlbmluZyAocHJvY2VkdXJlKQotIGRlcHJlc3Npb24gc2NyZWVuaW5nIHVzaW5nIHBhdGllbnQgaGVhbHRoIHF1ZXN0aW9ubmFpcmUgdHdvLWl0ZW0gc2NvcmUgKHByb2NlZHVyZSkKVGhlIHBhdGllbnQgd2FzIHByZXNjcmliZWQgdGhlIGZvbGxvd2luZyBtZWRpY2F0aW9uczoKLSBpbnN1bGluIGlzb3BoYW5lLCBodW1hbiA3MCB1bnQvbWwgLyBpbnN1bGluLCByZWd1bGFyLCBodW1hbiAzMCB1bnQvbWwgaW5qZWN0YWJsZSBzdXNwZW5zaW9uIFtodW11bGluXQotIGh5ZHJvY2hsb3JvdGhpYXppZGUgMjUgbWcgb3JhbCB0YWJsZXQKLSBsaXNpbm9wcmlsIDEwIG1nIG9yYWwgdGFibGV0Cg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/4c4d0730-201f-5b75-c657-8d0de09cc28f"}], "period": {"start": "2018-06-14T17:14:11-04:00", "end": "2018-06-14T17:50:39-04:00"}}} +{"resourceType": "DocumentReference", "id": "b39532e8-ee15-a7c4-cac5-353a8be67d15", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:c9ef57c7-86e7-3d70-1423-11e2310a2371"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/6a883108-7b87-120b-d163-d369336e04e5"}, "date": "2018-06-07T23:14:12.727-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|97ec0051-f3fb-3876-9f88-4c335d090345", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMDcKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gV2hlZXppbmcKCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCldpbGZyZWRvNjIyCiBpcyBhIDE1IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiByaXNrIGFjdGl2aXR5IGludm9sdmVtZW50IChmaW5kaW5nKSwgbGFjZXJhdGlvbiBvZiBoYW5kLCBhdG9waWMgZGVybWF0aXRpcywgcGVyZW5uaWFsIGFsbGVyZ2ljIHJoaW5pdGlzIHdpdGggc2Vhc29uYWwgdmFyaWF0aW9uLCBzaW51c2l0aXMgKGRpc29yZGVyKS4KCiMgU29jaWFsIEhpc3RvcnkKIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KCgpQYXRpZW50IGNvbWVzIGZyb20gYSBoaWdoIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKYWNldGFtaW5vcGhlbiAzMjUgbWcgb3JhbCB0YWJsZXQ7IGJ1ZGVzb25pZGUgMC4xMjUgbWcvbWwgaW5oYWxhdGlvbiBzdXNwZW5zaW9uOyBhbGJ1dGVyb2wgMC44MyBtZy9tbCBpbmhhbGF0aW9uIHNvbHV0aW9uCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gZGVwcmVzc2lvbiBzY3JlZW5pbmcgKHByb2NlZHVyZSkKLSBkZXByZXNzaW9uIHNjcmVlbmluZyB1c2luZyBwYXRpZW50IGhlYWx0aCBxdWVzdGlvbm5haXJlIG5pbmUgaXRlbSBzY29yZSAocHJvY2VkdXJlKQpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIGJ1ZGVzb25pZGUgMC4xMjUgbWcvbWwgaW5oYWxhdGlvbiBzdXNwZW5zaW9uCi0gYWxidXRlcm9sIDAuODMgbWcvbWwgaW5oYWxhdGlvbiBzb2x1dGlvbgo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/2b1ee164-6c87-420d-a9e2-6c235ebeef71"}], "period": {"start": "2018-06-07T23:14:12-04:00", "end": "2018-06-07T23:29:12-04:00"}}} +{"resourceType": "DocumentReference", "id": "b44d277c-7c09-a39b-97e9-1e96d71b6978", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:83c2548a-dff1-8e48-670d-b6c39b8e01c7"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/7bf52d54-0d2a-265a-15aa-eeed7aaf4af6"}, "date": "2018-06-15T03:05:37.630-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999981993", "display": "Dr. Kirk871 Erdman779"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|34a95aab-dcd3-3dd1-9bed-b2cd7b8f0934", "display": "NINNESCAH VALLEY HEALTH SYSTEMS INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTUKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gQ291Z2gKLSBTaG9ydG5lc3Mgb2YgQnJlYXRoCgoKIyBIaXN0b3J5IG9mIFByZXNlbnQgSWxsbmVzcwpBbGVzc2FuZHJhOTMyIEt5b25nOTcwCiBpcyBhIDM4IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHBhcnQtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgbm9ybWFsIHByZWduYW5jeSwgdW5oZWFsdGh5IGFsY29ob2wgZHJpbmtpbmcgYmVoYXZpb3IgKGZpbmRpbmcpLCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLCBzdHJlc3MgKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIG1hcnJpZWQuIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBsb3cgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgYSBoaWdoIHNjaG9vbCBlZHVjYXRpb24uClBhdGllbnQgY3VycmVudGx5IGhhcyBOTyBJTlNVUkFOQ0UuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmxpc2lub3ByaWwgMTAgbWcgb3JhbCB0YWJsZXQ7IGFjZXRhbWlub3BoZW4gMzI1IG1nIC8gb3h5Y29kb25lIGh5ZHJvY2hsb3JpZGUgMTAgbWcgb3JhbCB0YWJsZXQgW3BlcmNvY2V0XTsgZXRvbm9nZXN0cmVsIDY4IG1nIGRydWcgaW1wbGFudDsgYWNldGFtaW5vcGhlbiAzMDAgbWcgLyBoeWRyb2NvZG9uZSBiaXRhcnRyYXRlIDUgbWcgb3JhbCB0YWJsZXQ7IDEyMCBhY3R1YXQgYnVkZXNvbmlkZSAwLjE4IG1nL2FjdHVhdCBkcnkgcG93ZGVyIGluaGFsZXIgW3B1bG1pY29ydF07IGFjZXRhbWlub3BoZW4gMzAwIG1nIC8gY29kZWluZSBwaG9zcGhhdGUgMTUgbWcgb3JhbCB0YWJsZXQ7IDEyIGhyIGh5ZHJvY29kb25lIGJpdGFydHJhdGUgMTAgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIGNhcHN1bGU7IDcyIGhyIGZlbnRhbnlsIDAuMDI1IG1nL2hyIHRyYW5zZGVybWFsIHN5c3RlbTsgbmRhMDIxNDU3IDIwMCBhY3R1YXQgYWxidXRlcm9sIDAuMDkgbWcvYWN0dWF0IG1ldGVyZWQgZG9zZSBpbmhhbGVyIFtwcm9haXJdOyBhYnVzZS1kZXRlcnJlbnQgMTIgaHIgb3h5Y29kb25lIGh5ZHJvY2hsb3JpZGUgMTAgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIHRhYmxldCBbb3h5Y29udGluXTsgam9saXZldHRlIDI4IGRheSBwYWNrOyBhbWxvZGlwaW5lIDIuNSBtZyBvcmFsIHRhYmxldDsgYWNldGFtaW5vcGhlbiAzMjUgbWcgLyBveHljb2RvbmUgaHlkcm9jaGxvcmlkZSA1IG1nIG9yYWwgdGFibGV0OyBhYnVzZS1kZXRlcnJlbnQgMTIgaHIgb3h5Y29kb25lIGh5ZHJvY2hsb3JpZGUgMTUgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIHRhYmxldDsgbnV2YXJpbmcgMC4xMi8wLjAxNSBtZyBwZXIgMjRociAyMSBkYXkgdmFnaW5hbCBzeXN0ZW0KCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBwYXRpZW50IHdhcyBwcmVzY3JpYmVkIHRoZSBmb2xsb3dpbmcgbWVkaWNhdGlvbnM6Ci0gbGV2b3JhIDAuMTUvMzAgMjggZGF5IHBhY2sK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/ba84689e-2f9f-7cea-af1f-d69ffdd3a3eb"}], "period": {"start": "2018-06-15T03:05:37-04:00", "end": "2018-06-15T03:20:37-04:00"}}} +{"resourceType": "DocumentReference", "id": "b58f7768-64be-6c0f-1b82-3deffdef1076", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:065fc573-b6d9-03b9-d742-eb8843a5c211"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/a28be3e1-a6bd-7df4-fc81-1140848f8453"}, "date": "2018-06-29T09:15:15.089-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999989897", "display": "Dr. Luther918 Jakubowski832"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|87763f1e-5631-3b37-a73a-72a2b7f3e5f4", "display": "RECOVER-CARE MEADOWBROOK REHABILITATION LLC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMjkKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkxlYW5uMjI0CiBpcyBhIDIxIHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHBhcnQtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgcmlzayBhY3Rpdml0eSBpbnZvbHZlbWVudCAoZmluZGluZyksIHZpcmFsIHNpbnVzaXRpcyAoZGlzb3JkZXIpLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKSwgc3RyZXNzIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKIFBhdGllbnQgcXVpdCBzbW9raW5nIGF0IGFnZSAxNi4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBoaWdoIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgaGFzIGNvbXBsZXRlZCBzb21lIGNvbGxlZ2UgY291cnNlcy4KUGF0aWVudCBjdXJyZW50bHkgaGFzIEh1bWFuYS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKbmF0YXppYSAyOCBkYXkgcGFjazsgMSBtbCBtZWRyb3h5cHJvZ2VzdGVyb25lIGFjZXRhdGUgMTUwIG1nL21sIGluamVjdGlvbjsgdHJpbmVzc2EgMjggZGF5IHBhY2s7IGxldm9yYSAwLjE1LzMwIDI4IGRheSBwYWNrCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gaW50cmFtdXNjdWxhciBpbmplY3Rpb24K"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/91f94a9d-69a7-e30a-cd1a-68c52dc01e70"}], "period": {"start": "2018-06-29T09:15:15-04:00", "end": "2018-06-29T09:30:15-04:00"}}} +{"resourceType": "DocumentReference", "id": "b73493d0-e2f4-9aa6-cdad-920f7c126d6c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:936fb684-8779-385c-5b32-da3ee03c077c"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/50f8b42e-17a6-e932-8546-da94004c597c"}, "date": "2018-07-16T11:29:16.206-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999999193", "display": "Dr. Dusty207 Franecki195"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|b06ab2a4-dfb1-31b1-b356-94caaaf94c89", "display": "STORMONT-VAIL HEALTHCARE INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTYKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gVGhpcnN0Ci0gSm9pbnQgUGFpbgotIEZhdGlndWUKLSBGcmVxdWVudCBVcmluYXRpb24KCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClJvbm5pZTcKIGlzIGEgNDggeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMyAoZGlzb3JkZXIpLCBtaXN1c2VzIGRydWdzIChmaW5kaW5nKSwgdmljdGltIG9mIGludGltYXRlIHBhcnRuZXIgYWJ1c2UgKGZpbmRpbmcpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDQgKGRpc29yZGVyKSwgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDIgKGRpc29yZGVyKSwgbm90IGluIGxhYm9yIGZvcmNlIChmaW5kaW5nKSwgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMSAoZGlzb3JkZXIpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYXdhaXRpbmcgdHJhbnNwbGFudGF0aW9uIG9mIGtpZG5leSAoc2l0dWF0aW9uKSwgc3RyZXNzIChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgbWFycmllZC4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIG1pZGRsZSBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBhIGhpZ2ggc2Nob29sIGVkdWNhdGlvbi4KUGF0aWVudCBjdXJyZW50bHkgaGFzIFVuaXRlZEhlYWx0aGNhcmUuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmxpc2lub3ByaWwgMTAgbWcgb3JhbCB0YWJsZXQ7IDEgbWwgZXBvZXRpbiBhbGZhIDQwMDAgdW50L21sIGluamVjdGlvbiBbZXBvZ2VuXTsgYWJ1c2UtZGV0ZXJyZW50IDEyIGhyIG94eWNvZG9uZSBoeWRyb2NobG9yaWRlIDEwIG1nIGV4dGVuZGVkIHJlbGVhc2Ugb3JhbCB0YWJsZXQgW294eWNvbnRpbl07IGluc3VsaW4gaXNvcGhhbmUsIGh1bWFuIDcwIHVudC9tbCAvIGluc3VsaW4sIHJlZ3VsYXIsIGh1bWFuIDMwIHVudC9tbCBpbmplY3RhYmxlIHN1c3BlbnNpb24gW2h1bXVsaW5dOyBhY2V0YW1pbm9waGVuIDMwMCBtZyAvIGNvZGVpbmUgcGhvc3BoYXRlIDE1IG1nIG9yYWwgdGFibGV0OyAxMiBociBoeWRyb2NvZG9uZSBiaXRhcnRyYXRlIDEwIG1nIGV4dGVuZGVkIHJlbGVhc2Ugb3JhbCBjYXBzdWxlOyA3MiBociBmZW50YW55bCAwLjAyNSBtZy9ociB0cmFuc2Rlcm1hbCBzeXN0ZW07IGFjZXRhbWlub3BoZW4gMzAwIG1nIC8gaHlkcm9jb2RvbmUgYml0YXJ0cmF0ZSA1IG1nIG9yYWwgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gcmVuYWwgZGlhbHlzaXMgKHByb2NlZHVyZSkKVGhlIHBhdGllbnQgd2FzIHByZXNjcmliZWQgdGhlIGZvbGxvd2luZyBtZWRpY2F0aW9uczoKLSAxIG1sIGVwb2V0aW4gYWxmYSA0MDAwIHVudC9tbCBpbmplY3Rpb24gW2Vwb2dlbl0K"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/37604257-be1a-120f-81ee-336f81603f92"}], "period": {"start": "2018-07-16T11:29:16-04:00", "end": "2018-07-16T15:22:16-04:00"}}} +{"resourceType": "DocumentReference", "id": "b7b68006-53d5-b823-d193-56b262f45e8b", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:2aa9859b-2993-9865-002b-696ff696d3ff"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/ad3ed58a-5645-af0a-eeca-ab543123a8aa"}, "date": "2018-07-19T05:10:16.092-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999903799", "display": "Dr. Jen355 Hintz995"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|7f307ea1-4eec-3832-a41e-069d34954a2c", "display": "SHARON LANE HEALTH SERVICES"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTkKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClZlb2xhODEzCiBpcyBhIDE5IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHBhcnQtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgcmlzayBhY3Rpdml0eSBpbnZvbHZlbWVudCAoZmluZGluZyksIG5vdCBpbiBsYWJvciBmb3JjZSAoZmluZGluZyksIHNpbnVzaXRpcyAoZGlzb3JkZXIpLCB2aXJhbCBzaW51c2l0aXMgKGRpc29yZGVyKSwgc3RyZXNzIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgYSBoaWdoIHNjaG9vbCBlZHVjYXRpb24uClBhdGllbnQgY3VycmVudGx5IGhhcyBIdW1hbmEuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmVycmluIDI4IGRheSBwYWNrOyB5YXogMjggZGF5IHBhY2s7IGNhbWlsYSAyOCBkYXkgcGFjawoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuClBhdGllbnQgaXMgcHJlc2VudGluZyB3aXRoIGZyYWN0dXJlIG9mIHJpYi4gCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gY2hlc3QgeC1yYXkKLSBib25lIGltbW9iaWxpemF0aW9uClRoZSBwYXRpZW50IHdhcyBwcmVzY3JpYmVkIHRoZSBmb2xsb3dpbmcgbWVkaWNhdGlvbnM6Ci0gaWJ1cHJvZmVuIDIwMCBtZyBvcmFsIHRhYmxldApUaGUgcGF0aWVudCB3YXMgcGxhY2VkIG9uIGEgY2FyZXBsYW46Ci0gZnJhY3R1cmUgY2FyZQo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/03e34b19-2889-b828-792d-2a83400c55be"}], "period": {"start": "2018-07-19T05:10:16-04:00", "end": "2018-07-19T06:10:16-04:00"}}} +{"resourceType": "DocumentReference", "id": "b953a85f-f18b-d7a3-8974-ba44e0a3141c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:53269672-5325-0c3e-8fc4-7959e23f1060"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/a5bc08ea-9462-c4f5-1bd2-ff342598ac99"}, "date": "2018-06-05T04:29:14.769-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995191", "display": "Dr. Chang901 Kutch271"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|6544a809-6d34-36c8-9fad-9b64502b77c5", "display": "UNIVERSITY OF KANSAS HOSPITAL AUTHORITY"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMDUKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gSHVuZ2VyCi0gVGluZ2xpbmcgaW4gSGFuZHMgYW5kIEZlZXQKLSBUaGlyc3QKLSBGYXRpZ3VlCi0gRnJlcXVlbnQgVXJpbmF0aW9uCgoKIyBIaXN0b3J5IG9mIFByZXNlbnQgSWxsbmVzcwpNb25pa2E1MDkKIGlzIGEgNjIgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAzIChkaXNvcmRlciksIHZpY3RpbSBvZiBpbnRpbWF0ZSBwYXJ0bmVyIGFidXNlIChmaW5kaW5nKSwgbWlzdXNlcyBkcnVncyAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgNCAoZGlzb3JkZXIpLCBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMiAoZGlzb3JkZXIpLCBsaW1pdGVkIHNvY2lhbCBjb250YWN0IChmaW5kaW5nKSwgbm90IGluIGxhYm9yIGZvcmNlIChmaW5kaW5nKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAxIChkaXNvcmRlciksIHJlcG9ydHMgb2YgdmlvbGVuY2UgaW4gdGhlIGVudmlyb25tZW50IChmaW5kaW5nKSwgZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBhd2FpdGluZyB0cmFuc3BsYW50YXRpb24gb2Yga2lkbmV5IChzaXR1YXRpb24pLCBzdHJlc3MgKGZpbmRpbmcpLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBzaW5nbGUuIFBhdGllbnQgcXVpdCBzbW9raW5nIGF0IGFnZSAxNy4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgY29tcGxldGVkIHNvbWUgY29sbGVnZSBjb3Vyc2VzLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgVW5pdGVkSGVhbHRoY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKMSBtbCBlcG9ldGluIGFsZmEgNDAwMCB1bnQvbWwgaW5qZWN0aW9uIFtlcG9nZW5dOyBpbnN1bGluIGlzb3BoYW5lLCBodW1hbiA3MCB1bnQvbWwgLyBpbnN1bGluLCByZWd1bGFyLCBodW1hbiAzMCB1bnQvbWwgaW5qZWN0YWJsZSBzdXNwZW5zaW9uIFtodW11bGluXQoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgoKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIHJlbmFsIGRpYWx5c2lzIChwcm9jZWR1cmUpClRoZSBwYXRpZW50IHdhcyBwcmVzY3JpYmVkIHRoZSBmb2xsb3dpbmcgbWVkaWNhdGlvbnM6Ci0gMSBtbCBlcG9ldGluIGFsZmEgNDAwMCB1bnQvbWwgaW5qZWN0aW9uIFtlcG9nZW5dCg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/f964be66-3fcd-95c8-0021-71c7d24c91b7"}], "period": {"start": "2018-06-05T04:29:14-04:00", "end": "2018-06-05T07:24:14-04:00"}}} +{"resourceType": "DocumentReference", "id": "b985a70c-9504-b7b3-0707-f8381ba77976", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:335cb9fa-3969-6a37-58cd-8e4271b31a81"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/149de67a-2809-59a8-bfa2-36df509021dc"}, "date": "2018-06-07T08:38:26.022-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999973990", "display": "Dr. Lan153 Kemmer137"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|4bb44a4a-f0cc-316f-abbd-caf8ed29e5ba", "display": "COFFEY COUNTY HOSPITAL"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMDcKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gTmFzYWwgRGlzY2hhcmdlCi0gTmFzYWwgQ29uZ2VzdGlvbgotIEl0Y2hpbmcKCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkN1YzExMwogaXMgYSAxNCB5ZWFyLW9sZCBub25oaXNwYW5pYyB3aGl0ZSBmZW1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBydXB0dXJlIG9mIHBhdGVsbGFyIHRlbmRvbiwgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlciksIGZyYWN0dXJlIG9mIHJpYi4KCiMgU29jaWFsIEhpc3RvcnkKIFBhdGllbnQgcXVpdCBzbW9raW5nIGF0IGFnZSAxNi4KCgpQYXRpZW50IGNvbWVzIGZyb20gYSBoaWdoIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KClBhdGllbnQgY3VycmVudGx5IGhhcyBDaWduYSBIZWFsdGguCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmlidXByb2ZlbiAxMDAgbWcgb3JhbCB0YWJsZXQ7IG5hcHJveGVuIHNvZGl1bSAyMjAgbWcgb3JhbCB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBwYXRpZW50IHdhcyBwcmVzY3JpYmVkIHRoZSBmb2xsb3dpbmcgbWVkaWNhdGlvbnM6Ci0gbGV2b3JhIDAuMTUvMzAgMjggZGF5IHBhY2sK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/beb26500-4ccd-ce0a-44f6-74f44be5fafe"}], "period": {"start": "2018-06-07T08:38:26-04:00", "end": "2018-06-07T08:53:26-04:00"}}} +{"resourceType": "DocumentReference", "id": "ba0abbd6-49a9-95fa-2396-7118c56da8c6", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:be5ce357-dbf8-d699-66ac-5bda35660710"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/9b17654f-a902-3d56-9000-4ade3dd3059f"}, "date": "2018-06-12T18:41:20.077-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999999391", "display": "Dr. Santo387 Schuppe920"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|650aa83a-c78d-3ed4-8747-94091acb93ff", "display": "HCA WESLEY REHABILITATION HOSPITAL INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTIKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkxhdXJhMzkxCiBpcyBhIDQ3IHllYXItb2xkIGhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHR1YmFsIHByZWduYW5jeSwgbm9ybWFsIHByZWduYW5jeSwgYmxpZ2h0ZWQgb3Z1bSwgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIGFjdXRlIHZpcmFsIHBoYXJ5bmdpdGlzIChkaXNvcmRlciksIHZpcmFsIHNpbnVzaXRpcyAoZGlzb3JkZXIpLCBtaXN1c2VzIGRydWdzIChmaW5kaW5nKSwgY29tcGxldGUgbWlzY2FycmlhZ2UgKGRpc29yZGVyKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgbWFycmllZC4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIG1pZGRsZSBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBjb21wbGV0ZWQgc29tZSBjb2xsZWdlIGNvdXJzZXMuClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FpZC4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKbGlzaW5vcHJpbCAxMCBtZyBvcmFsIHRhYmxldDsgam9saXZldHRlIDI4IGRheSBwYWNrOyBtaXJlbmEgNTIgbWcgaW50cmF1dGVyaW5lIHN5c3RlbQoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgoKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIGV2YWx1YXRpb24gb2YgdXRlcmluZSBmdW5kYWwgaGVpZ2h0Ci0gYXVzY3VsdGF0aW9uIG9mIHRoZSBmZXRhbCBoZWFydAo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/ca45bbef-ef2a-3b3c-ea5e-76bcd5865780"}], "period": {"start": "2018-06-12T18:41:20-04:00", "end": "2018-06-12T18:56:20-04:00"}}} +{"resourceType": "DocumentReference", "id": "bcbaa9d3-d7cf-3f5f-44d3-32c8a267f991", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:8c45132b-204a-5207-aade-6632667b5518"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/17fde357-dcc9-af8b-a8d3-4bd213afeb22"}, "date": "2018-07-02T09:36:07.133-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999993196", "display": "Dr. Nicholas495 Greenfelder433"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|bbec63c3-d528-3680-9462-49ade979b1f9", "display": "CHILDREN'S MERCY HOSPITAL KANSAS"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMDIKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gQmx1cnJlZCBWaXNpb24KLSBUaW5nbGluZyBpbiBIYW5kcyBhbmQgRmVldAotIEZhdGlndWUKLSBGcmVxdWVudCBVcmluYXRpb24KCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCk1lcmxpbjcyMQogaXMgYSA3MiB5ZWFyLW9sZCBub25oaXNwYW5pYyB3aGl0ZSBtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2Ygc2V2ZXJlIGFueGlldHkgKHBhbmljKSAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMyAoZGlzb3JkZXIpLCB2aWN0aW0gb2YgaW50aW1hdGUgcGFydG5lciBhYnVzZSAoZmluZGluZyksIG1pc3VzZXMgZHJ1Z3MgKGZpbmRpbmcpLCB2aXJhbCBzaW51c2l0aXMgKGRpc29yZGVyKSwgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDIgKGRpc29yZGVyKSwgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIG5vdCBpbiBsYWJvciBmb3JjZSAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMSAoZGlzb3JkZXIpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYXdhaXRpbmcgdHJhbnNwbGFudGF0aW9uIG9mIGtpZG5leSAoc2l0dWF0aW9uKSwgZnJhY3R1cmUgc3VibHV4YXRpb24gb2Ygd3Jpc3QsIHN0cmVzcyAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIHNpbmdsZS4gUGF0aWVudCBxdWl0IHNtb2tpbmcgYXQgYWdlIDE2LgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIGhpZ2ggc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBpcyBhIGNvbGxlZ2UgZ3JhZHVhdGUuClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKbGlzaW5vcHJpbCAxMCBtZyBvcmFsIHRhYmxldDsgYWNldGFtaW5vcGhlbiAzMjUgbWcgb3JhbCB0YWJsZXQ7IDIgbWwgb25kYW5zZXRyb24gMiBtZy9tbCBpbmplY3Rpb247IGluc3VsaW4gaXNvcGhhbmUsIGh1bWFuIDcwIHVudC9tbCAvIGluc3VsaW4sIHJlZ3VsYXIsIGh1bWFuIDMwIHVudC9tbCBpbmplY3RhYmxlIHN1c3BlbnNpb24gW2h1bXVsaW5dOyBpbnN1bGluLCByZWd1bGFyLCBodW1hbiAxMDAgdW50L21sIGluamVjdGFibGUgc29sdXRpb247IG1pZGF6b2xhbSAxIG1nL21sIGluamVjdGFibGUgc29sdXRpb247IDEgbWwgZXBvZXRpbiBhbGZhIDQwMDAgdW50L21sIGluamVjdGlvbiBbZXBvZ2VuXTsgc2ltdmFzdGF0aW4gMTAgbWcgb3JhbCB0YWJsZXQ7IDEwMCBtbCBwcm9wb2ZvbCAxMCBtZy9tbCBpbmplY3Rpb247IHJvY3Vyb25pdW0gYnJvbWlkZSAxMCBtZy9tbCBpbmplY3RhYmxlIHNvbHV0aW9uOyBoeWRyb2NobG9yb3RoaWF6aWRlIDI1IG1nIG9yYWwgdGFibGV0OyAxIG1sIGhlcGFyaW4gc29kaXVtLCBwb3JjaW5lIDUwMDAgdW50L21sIGluamVjdGlvbjsgMjUgbWwgcHJvdGFtaW5lIHN1bGZhdGUgKHVzcCkgMTAgbWcvbWwgaW5qZWN0aW9uOyBpc29mbHVyYW5lIDk5LjkgJSBpbmhhbGF0aW9uIHNvbHV0aW9uOyBjZWZhem9saW4gMjAwMCBtZyBpbmplY3Rpb247IDEwIG1sIGZlbnRhbnlsIDAuMDUgbWcvbWwgaW5qZWN0aW9uCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KUGF0aWVudCBpcyBwcmVzZW50aW5nIHdpdGggZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLiAKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBhc3Nlc3NtZW50IG9mIGhlYWx0aCBhbmQgc29jaWFsIGNhcmUgbmVlZHMgKHByb2NlZHVyZSkKLSBzY3JlZW5pbmcgZm9yIGRvbWVzdGljIGFidXNlIChwcm9jZWR1cmUpCi0gZGVwcmVzc2lvbiBzY3JlZW5pbmcgKHByb2NlZHVyZSkKLSBkZXByZXNzaW9uIHNjcmVlbmluZyB1c2luZyBwYXRpZW50IGhlYWx0aCBxdWVzdGlvbm5haXJlIHR3by1pdGVtIHNjb3JlIChwcm9jZWR1cmUpCi0gYXNzZXNzbWVudCBvZiBzdWJzdGFuY2UgdXNlIChwcm9jZWR1cmUpCi0gYXNzZXNzbWVudCB1c2luZyBhbGNvaG9sIHVzZSBkaXNvcmRlcnMgaWRlbnRpZmljYXRpb24gdGVzdCAtIGNvbnN1bXB0aW9uIChwcm9jZWR1cmUpClRoZSBwYXRpZW50IHdhcyBwcmVzY3JpYmVkIHRoZSBmb2xsb3dpbmcgbWVkaWNhdGlvbnM6Ci0gaW5zdWxpbiBpc29waGFuZSwgaHVtYW4gNzAgdW50L21sIC8gaW5zdWxpbiwgcmVndWxhciwgaHVtYW4gMzAgdW50L21sIGluamVjdGFibGUgc3VzcGVuc2lvbiBbaHVtdWxpbl0KLSBoeWRyb2NobG9yb3RoaWF6aWRlIDI1IG1nIG9yYWwgdGFibGV0Ci0gbGlzaW5vcHJpbCAxMCBtZyBvcmFsIHRhYmxldAo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/32d0ae2d-1be8-9e90-a4da-4c222abd88a9"}], "period": {"start": "2018-07-02T09:36:07-04:00", "end": "2018-07-02T10:32:49-04:00"}}} +{"resourceType": "DocumentReference", "id": "bd60a52b-65b9-f26d-03e4-282850509f03", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:4cf5fe66-b2f1-5358-ac93-513c459a23c8"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/51032f44-d514-26e9-3e85-e956561c076e"}, "date": "2018-07-10T06:35:55.147-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995092", "display": "Dr. Cristi782 Leannon79"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|a48fd0a0-3960-31bf-b63c-9c82840df767", "display": "ASCENSION VIA CHRISTI HOSPITAL PITTSBURG INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTAKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkNocmlzdGluaWE4ODYKIGlzIGEgNDUgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBub3JtYWwgcHJlZ25hbmN5LCBsaW1pdGVkIHNvY2lhbCBjb250YWN0IChmaW5kaW5nKSwgbm90IGluIGxhYm9yIGZvcmNlIChmaW5kaW5nKSwgZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCB2aWN0aW0gb2YgaW50aW1hdGUgcGFydG5lciBhYnVzZSAoZmluZGluZyksIGNvbXBsZXRlIG1pc2NhcnJpYWdlIChkaXNvcmRlciksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLCBzdHJlc3MgKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIHNpbmdsZS4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIG1pZGRsZSBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBjb21wbGV0ZWQgc29tZSBjb2xsZWdlIGNvdXJzZXMuClBhdGllbnQgY3VycmVudGx5IGhhcyBBZXRuYS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKbGlzaW5vcHJpbCAxMCBtZyBvcmFsIHRhYmxldDsgZXJyaW4gMjggZGF5IHBhY2s7IG1pcmVuYSA1MiBtZyBpbnRyYXV0ZXJpbmUgc3lzdGVtOyB5YXogMjggZGF5IHBhY2s7IDEgbWwgbWVkcm94eXByb2dlc3Rlcm9uZSBhY2V0YXRlIDE1MCBtZy9tbCBpbmplY3Rpb24KCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBwYXRpZW50IHdhcyBwcmVzY3JpYmVkIHRoZSBmb2xsb3dpbmcgbWVkaWNhdGlvbnM6Ci0gc2Vhc29uaXF1ZSA5MSBkYXkgcGFjawo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/d73ed087-e0ae-78e0-7a05-1bac1060c476"}], "period": {"start": "2018-07-10T06:35:55-04:00", "end": "2018-07-10T06:50:55-04:00"}}} +{"resourceType": "DocumentReference", "id": "bfddb0ff-1296-107e-76ca-14b4a14db9ce", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:6ebf6637-3c6c-6e3c-e571-3d2c66634bc8"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/26baae20-c8c5-003a-ab6b-ebcc49be20db"}, "date": "2018-07-02T07:26:18.234-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999966093", "display": "Dr. Elias404 Skiles927"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|17759655-9072-31e2-9b27-7a20ba98db55", "display": "UNITED METHODIST WESTERN KANSAS MEXICAN-AMERICAN MINISTRIES, INC."}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMDIKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gSm9pbnQgUmVkbmVzcwotIEZldmVyCi0gSm9pbnQgU3dlbGxpbmcKCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkx5bndvb2QzNTQKIGlzIGEgNTMgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYWN1dGUgdmlyYWwgcGhhcnluZ2l0aXMgKGRpc29yZGVyKSwgc3ByYWluIG9mIGFua2xlLCBzdHJlc3MgKGZpbmRpbmcpLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBzaW5nbGUuIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgYSBoaWdoIHNjaG9vbCBlZHVjYXRpb24uClBhdGllbnQgY3VycmVudGx5IGhhcyBBZXRuYS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKc2ltdmFzdGF0aW4gMTAgbWcgb3JhbCB0YWJsZXQ7IGFsbG9wdXJpbm9sIDEwMCBtZyBvcmFsIHRhYmxldDsgY29sY2hpY2luZSAwLjYgbWcgb3JhbCB0YWJsZXQ7IG5hcHJveGVuIHNvZGl1bSAyMjAgbWcgb3JhbCB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgpQYXRpZW50IGlzIHByZXNlbnRpbmcgd2l0aCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKS4gCgojIyBQbGFuClBhdGllbnQgd2FzIGdpdmVuIHRoZSBmb2xsb3dpbmcgaW1tdW5pemF0aW9uczogaW5mbHVlbnphLCBzZWFzb25hbCwgaW5qZWN0YWJsZSwgcHJlc2VydmF0aXZlIGZyZWUuIApUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gbWVkaWNhdGlvbiByZWNvbmNpbGlhdGlvbiAocHJvY2VkdXJlKQotIGFzc2Vzc21lbnQgb2YgaGVhbHRoIGFuZCBzb2NpYWwgY2FyZSBuZWVkcyAocHJvY2VkdXJlKQotIGFzc2Vzc21lbnQgb2YgYW54aWV0eSAocHJvY2VkdXJlKQotIGRlcHJlc3Npb24gc2NyZWVuaW5nIChwcm9jZWR1cmUpCi0gZGVwcmVzc2lvbiBzY3JlZW5pbmcgdXNpbmcgcGF0aWVudCBoZWFsdGggcXVlc3Rpb25uYWlyZSB0d28taXRlbSBzY29yZSAocHJvY2VkdXJlKQo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/c6ec2350-43d4-abab-2e84-4d2aadb337a7"}], "period": {"start": "2018-07-02T07:26:18-04:00", "end": "2018-07-02T07:58:56-04:00"}}} +{"resourceType": "DocumentReference", "id": "c18dbe84-be31-cee5-1f2e-cf163cdd3e3f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:66ef08d2-a4dd-4e59-781e-de409009027b"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/a5b171a7-9b28-20e7-86a7-936ecbf55f36"}, "date": "2018-07-27T10:08:29.473-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999952192", "display": "Dr. Joel444 Bins636"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|5fb102d5-17ef-38a4-bc57-75ecee3948b8", "display": "HUTCHINSON CLINIC WALK-IN CARE"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMjcKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClBhdHJpY2E3NzYgTm9lbDYwOAogaXMgYSA2MSB5ZWFyLW9sZCBub25oaXNwYW5pYyB3aGl0ZSBmZW1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIHBvbHlwIG9mIGNvbG9uLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKSwgc3RyZXNzIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBzaW5nbGUuIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgY29tcGxldGVkIHNvbWUgY29sbGVnZSBjb3Vyc2VzLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgTWVkaWNhcmUuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCnNpbXZhc3RhdGluIDEwIG1nIG9yYWwgdGFibGV0OyAyNCBociBtZXRmb3JtaW4gaHlkcm9jaGxvcmlkZSA1MDAgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIHRhYmxldAoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuClBhdGllbnQgaXMgcHJlc2VudGluZyB3aXRoIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKS4gCgojIyBQbGFuClBhdGllbnQgd2FzIGdpdmVuIHRoZSBmb2xsb3dpbmcgaW1tdW5pemF0aW9uczogaW5mbHVlbnphLCBzZWFzb25hbCwgaW5qZWN0YWJsZSwgcHJlc2VydmF0aXZlIGZyZWUsIHRkIChhZHVsdCksIDUgbGYgdGV0YW51cyB0b3hvaWQsIHByZXNlcnZhdGl2ZSBmcmVlLCBhZHNvcmJlZC4gClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBtZWRpY2F0aW9uIHJlY29uY2lsaWF0aW9uIChwcm9jZWR1cmUpCi0gYXNzZXNzbWVudCBvZiBoZWFsdGggYW5kIHNvY2lhbCBjYXJlIG5lZWRzIChwcm9jZWR1cmUpCi0gYXNzZXNzbWVudCBvZiBhbnhpZXR5IChwcm9jZWR1cmUpCi0gc2NyZWVuaW5nIGZvciBkb21lc3RpYyBhYnVzZSAocHJvY2VkdXJlKQotIGRlcHJlc3Npb24gc2NyZWVuaW5nIChwcm9jZWR1cmUpCi0gZGVwcmVzc2lvbiBzY3JlZW5pbmcgdXNpbmcgcGF0aWVudCBoZWFsdGggcXVlc3Rpb25uYWlyZSB0d28taXRlbSBzY29yZSAocHJvY2VkdXJlKQotIGFzc2Vzc21lbnQgb2Ygc3Vic3RhbmNlIHVzZSAocHJvY2VkdXJlKQotIHNjcmVlbmluZyBmb3IgZHJ1ZyBhYnVzZSAocHJvY2VkdXJlKQpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIDI0IGhyIG1ldGZvcm1pbiBoeWRyb2NobG9yaWRlIDUwMCBtZyBleHRlbmRlZCByZWxlYXNlIG9yYWwgdGFibGV0Cg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/c4605953-3103-ede6-e0c0-e0588e6f019e"}], "period": {"start": "2018-07-27T10:08:29-04:00", "end": "2018-07-27T10:47:54-04:00"}}} +{"resourceType": "DocumentReference", "id": "c6598486-8276-b44a-286e-b376143f7efc", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:2437bd36-d392-0e5d-0229-f65029be5103"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/47c37c92-5932-9cfe-66be-208556780fe0"}, "date": "2018-06-25T03:51:54.461-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999975698", "display": "Dr. Huong243 Jakubowski832"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|8c19555a-cc0d-31c5-88af-e67b2f61025d", "display": "HOSPITAL DISTRICT NO 1 OF RICE CO"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMjUKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gVGluZ2xpbmcgaW4gSGFuZHMgYW5kIEZlZXQKCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkphY2tpZTkzCiBpcyBhIDQxIHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGFjdXRlIGJyb25jaGl0aXMgKGRpc29yZGVyKSwgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYWN1dGUgdmlyYWwgcGhhcnluZ2l0aXMgKGRpc29yZGVyKSwgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlciksIHZpY3RpbSBvZiBpbnRpbWF0ZSBwYXJ0bmVyIGFidXNlIChmaW5kaW5nKSwgZnJhY3R1cmUgb2YgYW5rbGUsIHN0cmVzcyAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIHNpbmdsZS4gUGF0aWVudCBxdWl0IHNtb2tpbmcgYXQgYWdlIDE3LgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIG1pZGRsZSBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBhIGhpZ2ggc2Nob29sIGVkdWNhdGlvbi4KUGF0aWVudCBjdXJyZW50bHkgaGFzIE1lZGljYXJlLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwpsaXNpbm9wcmlsIDEwIG1nIG9yYWwgdGFibGV0OyBhY2V0YW1pbm9waGVuIDIxLjcgbWcvbWwgLyBkZXh0cm9tZXRob3JwaGFuIGh5ZHJvYnJvbWlkZSAxIG1nL21sIC8gZG94eWxhbWluZSBzdWNjaW5hdGUgMC40MTcgbWcvbWwgb3JhbCBzb2x1dGlvbjsgYWxidXRlcm9sIDUgbWcvbWwgaW5oYWxhdGlvbiBzb2x1dGlvbjsgaHlkcm9jaGxvcm90aGlhemlkZSAyNSBtZyBvcmFsIHRhYmxldDsgYWNldGFtaW5vcGhlbiAzMjUgbWcgLyBoeWRyb2NvZG9uZSBiaXRhcnRyYXRlIDcuNSBtZyBvcmFsIHRhYmxldDsgaWJ1cHJvZmVuIDIwMCBtZyBvcmFsIHRhYmxldDsgNjAgYWN0dWF0IGZsdXRpY2Fzb25lIHByb3Bpb25hdGUgMC4yNSBtZy9hY3R1YXQgLyBzYWxtZXRlcm9sIDAuMDUgbWcvYWN0dWF0IGRyeSBwb3dkZXIgaW5oYWxlcgoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuClBhdGllbnQgaXMgcHJlc2VudGluZyB3aXRoIG5ldXJvcGF0aHkgZHVlIHRvIHR5cGUgMiBkaWFiZXRlcyBtZWxsaXR1cyAoZGlzb3JkZXIpLiAKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBwZXJpcGhlcmFsIGJsb29kIHNtZWFyIGludGVycHJldGF0aW9uCi0gcmV2aWV3IG9mIHN5c3RlbXMgKHByb2NlZHVyZSkKLSBtZWRpY2F0aW9uIHJlY29uY2lsaWF0aW9uIChwcm9jZWR1cmUpCi0gYnJpZWYgZ2VuZXJhbCBleGFtaW5hdGlvbiAocHJvY2VkdXJlKQo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/b5974881-ae62-ddd6-b905-8c86c1ca9e33"}], "period": {"start": "2018-06-25T03:51:54-04:00", "end": "2018-06-25T05:10:39-04:00"}}} +{"resourceType": "DocumentReference", "id": "c6c64129-9dfa-840d-3309-a5590cc74f2e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:f9f570ee-9447-2992-7fe3-4a87f854b1ff"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/ad239efc-637c-e428-c829-b87e700d5446"}, "date": "2018-06-15T12:35:06.955-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999997296", "display": "Dr. Harlan808 Langosh790"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|2342a2b7-3dfe-3a27-960d-8c9d49e49b6a", "display": "WESTERN PLAINS MEDICAL COMPLEX"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTUKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gVGhpcnN0CgoKIyBIaXN0b3J5IG9mIFByZXNlbnQgSWxsbmVzcwpGZWxpcGU5NwogaXMgYSA2NiB5ZWFyLW9sZCBub25oaXNwYW5pYyBibGFjayBtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgYWN1dGUgYmFjdGVyaWFsIHNpbnVzaXRpcyAoZGlzb3JkZXIpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDMgKGRpc29yZGVyKSwgdmljdGltIG9mIGludGltYXRlIHBhcnRuZXIgYWJ1c2UgKGZpbmRpbmcpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDQgKGRpc29yZGVyKSwgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBjaHJvbmljIGtpZG5leSBkaXNlYXNlIHN0YWdlIDIgKGRpc29yZGVyKSwgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIG5vdCBpbiBsYWJvciBmb3JjZSAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMSAoZGlzb3JkZXIpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYXdhaXRpbmcgdHJhbnNwbGFudGF0aW9uIG9mIGtpZG5leSAoc2l0dWF0aW9uKSwgc3RyZXNzIChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgc2luZ2xlLiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMTcuCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgZGlkIG5vdCBmaW5pc2ggaGlnaCBzY2hvb2wuClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKaHlkcm9jaGxvcm90aGlhemlkZSAyNSBtZyBvcmFsIHRhYmxldDsgYW1sb2RpcGluZSAyLjUgbWcgb3JhbCB0YWJsZXQ7IGluc3VsaW4gaXNvcGhhbmUsIGh1bWFuIDcwIHVudC9tbCAvIGluc3VsaW4sIHJlZ3VsYXIsIGh1bWFuIDMwIHVudC9tbCBpbmplY3RhYmxlIHN1c3BlbnNpb24gW2h1bXVsaW5dCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gcmVuYWwgZGlhbHlzaXMgKHByb2NlZHVyZSkK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/366df7d3-2ea9-db22-7cdd-60fa8a5c45ca"}], "period": {"start": "2018-06-15T12:35:06-04:00", "end": "2018-06-15T15:19:06-04:00"}}} +{"resourceType": "DocumentReference", "id": "c84e67e9-4ea8-700b-9f2b-c0179e803d4f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:c202fdf3-0e1b-7fa2-c7cc-f8ecb6965b4d"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/dffa62dc-8ec2-1cd6-ee75-f9156a5283fe"}, "date": "2018-07-15T04:49:59.714-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999887190", "display": "Dr. Kathie378 Fisher429"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|2630ed36-5c3b-3c7d-bca3-2d09378a9621", "display": "VIA CHRISTI VILLAGE MCLEAN, INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTUKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkNlZHJpYzc0NgogaXMgYSA4IHllYXItb2xkIGhpc3BhbmljIHdoaXRlIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBvdGl0aXMgbWVkaWEsIHZpcmFsIHNpbnVzaXRpcyAoZGlzb3JkZXIpLCBzcHJhaW4gb2Ygd3Jpc3QuCgojIFNvY2lhbCBIaXN0b3J5CiBQYXRpZW50IGhhcyBuZXZlciBzbW9rZWQuCgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KClBhdGllbnQgY3VycmVudGx5IGhhcyBDaWduYSBIZWFsdGguCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmFtb3hpY2lsbGluIDUwMCBtZyBvcmFsIHRhYmxldDsgaWJ1cHJvZmVuIDEwMCBtZyBvcmFsIHRhYmxldDsgYW1veGljaWxsaW4gMjUwIG1nIC8gY2xhdnVsYW5hdGUgMTI1IG1nIG9yYWwgdGFibGV0OyBhY2V0YW1pbm9waGVuIDE2MCBtZyBjaGV3YWJsZSB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgpQYXRpZW50IGlzIHByZXNlbnRpbmcgd2l0aCBzcHJhaW4gb2YgYW5rbGUuIAoKIyMgUGxhbgoKVGhlIHBhdGllbnQgd2FzIHByZXNjcmliZWQgdGhlIGZvbGxvd2luZyBtZWRpY2F0aW9uczoKLSBhY2V0YW1pbm9waGVuIDE2MCBtZyBjaGV3YWJsZSB0YWJsZXQKVGhlIHBhdGllbnQgd2FzIHBsYWNlZCBvbiBhIGNhcmVwbGFuOgotIHBoeXNpb3RoZXJhcHkgY2FyZSBwbGFuIChyZWNvcmQgYXJ0aWZhY3QpCg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/11381dc6-0e06-da55-0735-d1e7bbf8bb35"}], "period": {"start": "2018-07-15T04:49:59-04:00", "end": "2018-07-15T05:49:59-04:00"}}} +{"resourceType": "DocumentReference", "id": "351ea353-4dc6-b0a8-2a70-0e5478e8171e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:a646235a-b89a-d666-066b-8787875980b4"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/cb8c0665-30ee-479c-8994-d29f1a6848b0"}, "date": "2018-06-15T08:48:22.726-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999990499", "display": "Dr. Lynwood354 Tromp100"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|49dd8fe4-9d52-3e9d-afd4-bd7b51de8b82", "display": "SHAWNEE MISSION MEDICAL CENTER INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTUKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkxvZ2FuNDk3CiBpcyBhIDUwIHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIG5vdCBpbiBsYWJvciBmb3JjZSAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgc3RyZXNzIChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgc2luZ2xlLiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMTguCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgaGFzIGNvbXBsZXRlZCBzb21lIGNvbGxlZ2UgY291cnNlcy4KUGF0aWVudCBjdXJyZW50bHkgaGFzIEJsdWUgQ3Jvc3MgQmx1ZSBTaGllbGQuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCk5vIEFjdGl2ZSBNZWRpY2F0aW9ucy4KCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBjb2xvbm9zY29weQo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/1d679c3a-2765-5e13-e2a3-4bd76a898fc6"}], "period": {"start": "2018-06-15T08:48:22-04:00", "end": "2018-06-15T09:16:58-04:00"}}} +{"resourceType": "DocumentReference", "id": "36d0d49a-6346-2856-d614-3f0a1ae85685", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:b8690a5b-3f8c-11f2-065f-fea0057ffa60"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/f9399f0d-5401-09f3-d4ff-89b1aa51b9c8"}, "date": "2018-07-21T15:54:33.762-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999996397", "display": "Dr. Clara183 Esquivel546"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|6f062a1b-1c9e-3481-9738-d8f1410314b3", "display": "SALINA REGIONAL HEALTH CENTER"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMjEKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkJyYWluMTQyCiBpcyBhIDE2IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIG1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiByaXNrIGFjdGl2aXR5IGludm9sdmVtZW50IChmaW5kaW5nKSwgY2hpbGQgYXR0ZW50aW9uIGRlZmljaXQgZGlzb3JkZXIsIGVwaWRlcm1hbCBidXJuIG9mIHNraW4gKGRpc29yZGVyKSwgYWN1dGUgdmlyYWwgcGhhcnluZ2l0aXMgKGRpc29yZGVyKS4KCiMgU29jaWFsIEhpc3RvcnkKIFBhdGllbnQgcXVpdCBzbW9raW5nIGF0IGFnZSAxNy4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgoKUGF0aWVudCBjdXJyZW50bHkgaGFzIE5PIElOU1VSQU5DRS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKYWNldGFtaW5vcGhlbiAxNjAgbWcgY2hld2FibGUgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KUGF0aWVudCBpcyBwcmVzZW50aW5nIHdpdGggdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlcikuIAoKIyMgUGxhbgoK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/6a952afd-3be5-e27e-9e05-5a1e085e34d0"}], "period": {"start": "2018-07-21T15:54:33-04:00", "end": "2018-07-21T16:09:33-04:00"}}} +{"resourceType": "DocumentReference", "id": "37c2d2ba-1976-1167-9bf6-7eb17f3fa35f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:ed75a113-f700-3cba-6c62-5a46360cb330"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/8022fbbe-aaa4-056c-d0f5-ec074bf0656c"}, "date": "2018-06-13T12:17:51.616-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999957597", "display": "Dr. Kathrine376 Reinger292"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|0737e7bb-6970-3d0c-a381-ae845d06c29e", "display": "COMMUNITY MEMORIAL HEALTHCARE INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTMKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClNhbnRvczE4NAogaXMgYSAxIHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIG1hbGUuCgojIFNvY2lhbCBIaXN0b3J5CiBQYXRpZW50IGhhcyBuZXZlciBzbW9rZWQuCgoKUGF0aWVudCBjb21lcyBmcm9tIGEgaGlnaCBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCgpQYXRpZW50IGN1cnJlbnRseSBoYXMgVW5pdGVkSGVhbHRoY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKTm8gQWN0aXZlIE1lZGljYXRpb25zLgoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgpQYXRpZW50IHdhcyBnaXZlbiB0aGUgZm9sbG93aW5nIGltbXVuaXphdGlvbnM6IGR0YXAuIAo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/e922a884-7039-a171-a65e-78051fe7afe6"}], "period": {"start": "2018-06-13T12:17:51-04:00", "end": "2018-06-13T12:32:51-04:00"}}} +{"resourceType": "DocumentReference", "id": "3ebf29a1-a116-9d17-5e9a-bad0d6c2d756", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:d5c95858-863b-fd01-fbaf-0ddfce1ff873"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/0b052286-9534-99a8-8d5e-06c2c04a7df7"}, "date": "2018-07-28T16:12:31.803-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999964692", "display": "Dr. Quintin944 Medhurst46"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|d52fef66-d411-30b9-b184-85c26614f40f", "display": "TURNER HOUSE CLINIC INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMjgKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkFubmFsZWU3ODggTGFyaXNzYTI5MwogaXMgYSA0OSB5ZWFyLW9sZCBub25oaXNwYW5pYyB3aGl0ZSBmZW1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBub3JtYWwgcHJlZ25hbmN5LCBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgYWN1dGUgdmlyYWwgcGhhcnluZ2l0aXMgKGRpc29yZGVyKSwgdmljdGltIG9mIGludGltYXRlIHBhcnRuZXIgYWJ1c2UgKGZpbmRpbmcpLCBzdHJlc3MgKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIG1hcnJpZWQuIFBhdGllbnQgcXVpdCBzbW9raW5nIGF0IGFnZSAxNi4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgYSBoaWdoIHNjaG9vbCBlZHVjYXRpb24uClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKbGlzaW5vcHJpbCAxMCBtZyBvcmFsIHRhYmxldDsgZXRvbm9nZXN0cmVsIDY4IG1nIGRydWcgaW1wbGFudDsgYW1sb2RpcGluZSAyLjUgbWcgb3JhbCB0YWJsZXQ7IDEgbWwgbWVkcm94eXByb2dlc3Rlcm9uZSBhY2V0YXRlIDE1MCBtZy9tbCBpbmplY3Rpb247IHlheiAyOCBkYXkgcGFjazsgbGV2b3JhIDAuMTUvMzAgMjggZGF5IHBhY2s7IDEyIGhyIGh5ZHJvY29kb25lIGJpdGFydHJhdGUgMTAgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIGNhcHN1bGU7IDcyIGhyIGZlbnRhbnlsIDAuMDI1IG1nL2hyIHRyYW5zZGVybWFsIHN5c3RlbTsgYWNldGFtaW5vcGhlbiAzMDAgbWcgLyBoeWRyb2NvZG9uZSBiaXRhcnRyYXRlIDUgbWcgb3JhbCB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgpQYXRpZW50IGlzIHByZXNlbnRpbmcgd2l0aCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZykuIAoKIyMgUGxhbgpQYXRpZW50IHdhcyBnaXZlbiB0aGUgZm9sbG93aW5nIGltbXVuaXphdGlvbnM6IGluZmx1ZW56YSwgc2Vhc29uYWwsIGluamVjdGFibGUsIHByZXNlcnZhdGl2ZSBmcmVlLiAKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIGFzc2Vzc21lbnQgb2YgaGVhbHRoIGFuZCBzb2NpYWwgY2FyZSBuZWVkcyAocHJvY2VkdXJlKQotIGFzc2Vzc21lbnQgb2YgYW54aWV0eSAocHJvY2VkdXJlKQotIGRlcHJlc3Npb24gc2NyZWVuaW5nIChwcm9jZWR1cmUpCi0gZGVwcmVzc2lvbiBzY3JlZW5pbmcgdXNpbmcgcGF0aWVudCBoZWFsdGggcXVlc3Rpb25uYWlyZSB0d28taXRlbSBzY29yZSAocHJvY2VkdXJlKQotIGFzc2Vzc21lbnQgb2Ygc3Vic3RhbmNlIHVzZSAocHJvY2VkdXJlKQotIHNjcmVlbmluZyBmb3IgZHJ1ZyBhYnVzZSAocHJvY2VkdXJlKQpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIDcyIGhyIGZlbnRhbnlsIDAuMDI1IG1nL2hyIHRyYW5zZGVybWFsIHN5c3RlbQotIGxpc2lub3ByaWwgMTAgbWcgb3JhbCB0YWJsZXQKLSAxMiBociBoeWRyb2NvZG9uZSBiaXRhcnRyYXRlIDEwIG1nIGV4dGVuZGVkIHJlbGVhc2Ugb3JhbCBjYXBzdWxlCi0gYW1sb2RpcGluZSAyLjUgbWcgb3JhbCB0YWJsZXQKLSBhY2V0YW1pbm9waGVuIDMwMCBtZyAvIGh5ZHJvY29kb25lIGJpdGFydHJhdGUgNSBtZyBvcmFsIHRhYmxldAo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/e5dabcb6-1d7a-7467-dbba-b864d0d5f5b0"}], "period": {"start": "2018-07-28T16:12:31-04:00", "end": "2018-07-28T16:54:33-04:00"}}} +{"resourceType": "DocumentReference", "id": "3f0e9271-a486-797d-978a-fb2d32d37d47", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:60052541-b5fa-1fb7-7776-eee22f452f44"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/a46846ca-3f95-2cbb-3a9d-5eae150a0273"}, "date": "2018-06-21T12:09:09.728-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999991992", "display": "Dr. Danial835 Ratke343"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|17b1e323-6812-34ad-ac7b-e77477a1fea6", "display": "PRIME HEALTHCARE SERVICES - SAINT JOHN LEAVENWORTH LLC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMjEKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gSHVuZ2VyCi0gVGhpcnN0Ci0gRmF0aWd1ZQotIEZyZXF1ZW50IFVyaW5hdGlvbgoKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKQmFyYmllMjExIExlZWFubmE4MzYKIGlzIGEgNDYgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBzZXZlcmUgYW54aWV0eSAocGFuaWMpIChmaW5kaW5nKSwgbm90IGluIGxhYm9yIGZvcmNlIChmaW5kaW5nKSwgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIHJlcG9ydHMgb2YgdmlvbGVuY2UgaW4gdGhlIGVudmlyb25tZW50IChmaW5kaW5nKSwgZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCB2aXJhbCBzaW51c2l0aXMgKGRpc29yZGVyKSwgZnJhY3R1cmUgc3VibHV4YXRpb24gb2Ygd3Jpc3QsIHN0cmVzcyAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIG1hcnJpZWQuIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KIFBhdGllbnQgaWRlbnRpZmllcyBhcyBoZXRlcm9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgY29tcGxldGVkIHNvbWUgY29sbGVnZSBjb3Vyc2VzLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgTWVkaWNhcmUuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmxpc2lub3ByaWwgMTAgbWcgb3JhbCB0YWJsZXQ7IGVycmluIDI4IGRheSBwYWNrOyBpYnVwcm9mZW4gNDAwIG1nIG9yYWwgdGFibGV0IFtpYnVdOyBpbnN1bGluIGlzb3BoYW5lLCBodW1hbiA3MCB1bnQvbWwgLyBpbnN1bGluLCByZWd1bGFyLCBodW1hbiAzMCB1bnQvbWwgaW5qZWN0YWJsZSBzdXNwZW5zaW9uIFtodW11bGluXTsgaWJ1cHJvZmVuIDIwMCBtZyBvcmFsIHRhYmxldDsgMSBtbCBtZWRyb3h5cHJvZ2VzdGVyb25lIGFjZXRhdGUgMTUwIG1nL21sIGluamVjdGlvbjsgbnV2YXJpbmcgMC4xMi8wLjAxNSBtZyBwZXIgMjRociAyMSBkYXkgdmFnaW5hbCBzeXN0ZW07IGNhbWlsYSAyOCBkYXkgcGFjawoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgoKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIGludHJhbXVzY3VsYXIgaW5qZWN0aW9uCg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/5c3450fb-12f0-08f3-6e4d-8a5e433e19a4"}], "period": {"start": "2018-06-21T12:09:09-04:00", "end": "2018-06-21T12:25:43-04:00"}}} +{"resourceType": "DocumentReference", "id": "3f578a1b-f50a-9333-3030-306982950658", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:b604f408-7b47-7b85-7fb6-a556dfe5969a"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/3cf7af45-2bee-aa9c-d524-40b487149d60"}, "date": "2018-06-13T01:37:13.576-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999961193", "display": "Dr. Eugenio846 Streich926"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|0fe7c8ee-71ff-3fa7-b848-83c7c9718648", "display": "CLOUD COUNTY HEALTH CENTER INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMTMKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gVGhpcnN0Ci0gRmF0aWd1ZQotIEZyZXF1ZW50IFVyaW5hdGlvbgoKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKR3JhbnQ5MDgKIGlzIGEgNTQgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHN0cmVwdG9jb2NjYWwgc29yZSB0aHJvYXQgKGRpc29yZGVyKSwgcGFydC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBhY3V0ZSBicm9uY2hpdGlzIChkaXNvcmRlciksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgbWFycmllZC4gUGF0aWVudCBxdWl0IHNtb2tpbmcgYXQgYWdlIDE3LgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIG1pZGRsZSBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGRpZCBub3QgZmluaXNoIGhpZ2ggc2Nob29sLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgTWVkaWNhcmUuCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmxpc2lub3ByaWwgMTAgbWcgb3JhbCB0YWJsZXQ7IGFjZXRhbWlub3BoZW4gMzI1IG1nIG9yYWwgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KUGF0aWVudCBpcyBwcmVzZW50aW5nIHdpdGggZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCByZXBvcnRzIG9mIHZpb2xlbmNlIGluIHRoZSBlbnZpcm9ubWVudCAoZmluZGluZykuIAoKIyMgUGxhbgoKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIG1lZGljYXRpb24gcmVjb25jaWxpYXRpb24gKHByb2NlZHVyZSkKLSBzbGVlcCBhcG5lYSBhc3Nlc3NtZW50IChwcm9jZWR1cmUpCi0gYXNzZXNzbWVudCBvZiBoZWFsdGggYW5kIHNvY2lhbCBjYXJlIG5lZWRzIChwcm9jZWR1cmUpCi0gZGVwcmVzc2lvbiBzY3JlZW5pbmcgKHByb2NlZHVyZSkKLSBkZXByZXNzaW9uIHNjcmVlbmluZyB1c2luZyBwYXRpZW50IGhlYWx0aCBxdWVzdGlvbm5haXJlIHR3by1pdGVtIHNjb3JlIChwcm9jZWR1cmUpCi0gYXNzZXNzbWVudCBvZiBzdWJzdGFuY2UgdXNlIChwcm9jZWR1cmUpCi0gYXNzZXNzbWVudCB1c2luZyBhbGNvaG9sIHVzZSBkaXNvcmRlcnMgaWRlbnRpZmljYXRpb24gdGVzdCAtIGNvbnN1bXB0aW9uIChwcm9jZWR1cmUpClRoZSBwYXRpZW50IHdhcyBwcmVzY3JpYmVkIHRoZSBmb2xsb3dpbmcgbWVkaWNhdGlvbnM6Ci0gbGlzaW5vcHJpbCAxMCBtZyBvcmFsIHRhYmxldAo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/d2782687-6885-037c-957d-579fbd681d2a"}], "period": {"start": "2018-06-13T01:37:13-04:00", "end": "2018-06-13T02:37:07-04:00"}}} +{"resourceType": "DocumentReference", "id": "406679b2-a02c-0003-3b17-56ba373fccff", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:602d3e2a-2584-ae64-0120-20a3c504047f"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/0734762a-9db6-22fc-b595-c3e472bb2a9a"}, "date": "2018-07-21T00:54:06.723-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999992594", "display": "Dr. Hyman89 Schmeler639"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|dafe8e2c-289d-3e2c-9563-ad5ec0e358b2", "display": "ASCENSION VIA CHRISTI HOSPITAL ST. TERESA, INC."}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMjEKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCk1hcm5pOTEzCiBpcyBhIDE1IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHBlcmVubmlhbCBhbGxlcmdpYyByaGluaXRpcyB3aXRoIHNlYXNvbmFsIHZhcmlhdGlvbiwgY2hpbGRob29kIGFzdGhtYS4KCiMgU29jaWFsIEhpc3RvcnkKIFBhdGllbnQgaGFzIG5ldmVyIHNtb2tlZC4KCgpQYXRpZW50IGNvbWVzIGZyb20gYSBoaWdoIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KClBhdGllbnQgY3VycmVudGx5IGhhcyBBbnRoZW0uCgojIEFsbGVyZ2llcwpObyBLbm93biBBbGxlcmdpZXMuCgojIE1lZGljYXRpb25zCmJyZWF0aC1hY3R1YXRlZCAxMjAgYWN0dWF0IGJlY2xvbWV0aGFzb25lIGRpcHJvcGlvbmF0ZSAwLjA0IG1nL2FjdHVhdCBtZXRlcmVkIGRvc2UgaW5oYWxlciBbcXZhcl07IGFsYnV0ZXJvbCAwLjgzIG1nL21sIGluaGFsYXRpb24gc29sdXRpb24KCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBzdWJjdXRhbmVvdXMgaW1tdW5vdGhlcmFweQo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/2f55edb9-a906-0b40-e183-89b1d65d1aa1"}], "period": {"start": "2018-07-21T00:54:06-04:00", "end": "2018-07-21T01:29:46-04:00"}}} +{"resourceType": "DocumentReference", "id": "41eb62dd-7032-e98d-84c6-d494ad8c877b", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:b288c1d6-423c-aff2-e970-6d0a00050b60"}], "status": "current", "docStatus": "final", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/2a0e1946-acf6-5a7e-9399-a9cbc4730199"}, "date": "2018-07-31T10:05:03.518-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999951798", "display": "Dr. Clair921 Flatley871"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|e7c5fcc9-2d9a-3a4b-b390-5bcd1579cf39", "display": "PAWNEE VALLEY MEDICAL ASSOCIATES"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMzEKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClRvYnkyNzQKIGlzIGEgNSBtb250aC1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLgoKIyBTb2NpYWwgSGlzdG9yeQogUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgoKClBhdGllbnQgY29tZXMgZnJvbSBhIG1pZGRsZSBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCgpQYXRpZW50IGN1cnJlbnRseSBoYXMgQW50aGVtLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwpObyBBY3RpdmUgTWVkaWNhdGlvbnMuCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuClBhdGllbnQgd2FzIGdpdmVuIHRoZSBmb2xsb3dpbmcgaW1tdW5pemF0aW9uczogaGliIChwcnAtb21wKSwgcm90YXZpcnVzLCBtb25vdmFsZW50LCBpcHYsIGR0YXAsIHBuZXVtb2NvY2NhbCBjb25qdWdhdGUgcGN2IDEzLiAKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIG1lZGljYXRpb24gcmVjb25jaWxpYXRpb24gKHByb2NlZHVyZSkK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/aabb3ac3-c4a3-f613-9507-63280adb9209"}], "period": {"start": "2018-07-31T10:05:03-04:00", "end": "2018-07-31T10:20:03-04:00"}}} +{"resourceType": "DocumentReference", "id": "4390dbd1-3bdf-e516-9fe0-a8180181507f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:9dc8a4e1-af72-c442-26a1-590f1c9e4e3c"}], "status": "current", "docStatus": "amended", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/e80dda2c-a260-dbf7-3167-bf0945f3a91d"}, "date": "2018-06-03T13:57:52.144-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999999391", "display": "Dr. Santo387 Schuppe920"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|650aa83a-c78d-3ed4-8747-94091acb93ff", "display": "HCA WESLEY REHABILITATION HOSPITAL INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMDMKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkNhbWVyb24zODEKIGlzIGEgMTUgeWVhci1vbGQgbm9uaGlzcGFuaWMgYmxhY2sgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlcikuCgojIFNvY2lhbCBIaXN0b3J5CiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMTkuCgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbG93IHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FpZC4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKYW1veGljaWxsaW4gMjUwIG1nIC8gY2xhdnVsYW5hdGUgMTI1IG1nIG9yYWwgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gc3ViY3V0YW5lb3VzIGltbXVub3RoZXJhcHkK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/029d1814-d7bf-0624-524d-7ccda5f320f6"}], "period": {"start": "2018-06-03T13:57:52-04:00", "end": "2018-06-03T14:45:10-04:00"}}} +{"resourceType": "DocumentReference", "id": "4390dbd1-3bdf-e516-9fe0-a8180181507f-error", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:9dc8a4e1-af72-c442-26a1-590f1c9e4e3c"}], "status": "current", "docStatus": "entered-in-error", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/e80dda2c-a260-dbf7-3167-bf0945f3a91d"}, "date": "2018-06-03T13:57:52.144-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999999391", "display": "Dr. Santo387 Schuppe920"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|650aa83a-c78d-3ed4-8747-94091acb93ff", "display": "HCA WESLEY REHABILITATION HOSPITAL INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMDMKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkNhbWVyb24zODEKIGlzIGEgMTUgeWVhci1vbGQgbm9uaGlzcGFuaWMgYmxhY2sgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlcikuCgojIFNvY2lhbCBIaXN0b3J5CiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMTkuCgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbG93IHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FpZC4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKYW1veGljaWxsaW4gMjUwIG1nIC8gY2xhdnVsYW5hdGUgMTI1IG1nIG9yYWwgdGFibGV0CgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gc3ViY3V0YW5lb3VzIGltbXVub3RoZXJhcHkK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/029d1814-d7bf-0624-524d-7ccda5f320f6"}], "period": {"start": "2018-06-03T13:57:52-04:00", "end": "2018-06-03T14:45:10-04:00"}}} +{"resourceType": "DocumentReference", "id": "4439aa6e-fbc2-21a1-208e-095907104a65", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:f1ab7207-d551-6c41-d6ec-dbccedccf6cd"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/82b8a670-4700-30e8-24a0-b83efa3c5e0a"}, "date": "2018-06-29T23:29:44.842-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999909895", "display": "Dr. Sylvester827 Beahan375"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|57f7e1eb-2858-35eb-be89-682645121a0a", "display": "AMEDISYS HOSPICE OF WICHITA"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMjkKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClRhdHVtNzAzCiBpcyBhIDI0IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIG5vcm1hbCBwcmVnbmFuY3ksIHJpc2sgYWN0aXZpdHkgaW52b2x2ZW1lbnQgKGZpbmRpbmcpLCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgc2luZ2xlLiBQYXRpZW50IGhhcyBhIGRvY3VtZW50ZWQgaGlzdG9yeSBvZiBvcGlvaWQgYWRkaWN0aW9uLiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMTcuCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbG93IHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgZGlkIG5vdCBmaW5pc2ggaGlnaCBzY2hvb2wuClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FpZC4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKc2Vhc29uaXF1ZSA5MSBkYXkgcGFjawoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgoK"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/75b68644-535d-bdc1-4c31-aa9fe7e1822f"}], "period": {"start": "2018-06-29T23:29:44-04:00", "end": "2018-06-30T11:29:44-04:00"}}} +{"resourceType": "DocumentReference", "id": "45160ef5-42e8-7239-6633-904308273198", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:43e2bdc3-1ab1-e9ea-6d9b-659b06960d9a"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/3627adb8-f741-acf3-2dd6-10f3bcbe1077"}, "date": "2018-07-13T07:52:54.692-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999988295", "display": "Dr. Lorette239 Hauck852"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|8dbbd4f7-a5cb-34b2-b3ed-84133fd3eb24", "display": "OSBORNE COUNTY MEMORIAL HOSPITAL"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTMKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkRhbGVuZTgwNQogaXMgYSAyOCB5ZWFyLW9sZCBub25oaXNwYW5pYyB3aGl0ZSBmZW1hbGUuIFBhdGllbnQgaGFzIGEgaGlzdG9yeSBvZiBub3JtYWwgcHJlZ25hbmN5LCBhY3V0ZSBicm9uY2hpdGlzIChkaXNvcmRlciksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBmdWxsLXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZyksIHNvY2lhbCBpc29sYXRpb24gKGZpbmRpbmcpLgoKIyBTb2NpYWwgSGlzdG9yeQpQYXRpZW50IGlzIHNpbmdsZS4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhvbW9zZXh1YWwuCgpQYXRpZW50IGNvbWVzIGZyb20gYSBtaWRkbGUgc29jaW9lY29ub21pYyBiYWNrZ3JvdW5kLgogUGF0aWVudCBoYXMgYSBoaWdoIHNjaG9vbCBlZHVjYXRpb24uClBhdGllbnQgY3VycmVudGx5IGhhcyBCbHVlIENyb3NzIEJsdWUgU2hpZWxkLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwphY2V0YW1pbm9waGVuIDMyNSBtZyBvcmFsIHRhYmxldDsgZXRvbm9nZXN0cmVsIDY4IG1nIGRydWcgaW1wbGFudAoKIyBBc3Nlc3NtZW50IGFuZCBQbGFuCgoKIyMgUGxhbgoKVGhlIGZvbGxvd2luZyBwcm9jZWR1cmVzIHdlcmUgY29uZHVjdGVkOgotIHBlcmlwaGVyYWwgYmxvb2Qgc21lYXIgaW50ZXJwcmV0YXRpb24KLSByZXZpZXcgb2Ygc3lzdGVtcyAocHJvY2VkdXJlKQotIG1lZGljYXRpb24gcmVjb25jaWxpYXRpb24gKHByb2NlZHVyZSkKLSBicmllZiBnZW5lcmFsIGV4YW1pbmF0aW9uIChwcm9jZWR1cmUpCg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/bca7cabc-b2fc-8a08-c69b-5bc0afa20d80"}], "period": {"start": "2018-07-13T07:52:54-04:00", "end": "2018-07-13T09:01:22-04:00"}}} +{"resourceType": "DocumentReference", "id": "4711ca43-989d-a8f9-5f32-0102640804cf", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:0d943c9a-2bd3-5563-e56d-a9e5a6965969"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/d3c0274f-f42b-8d2b-15f2-82331e723383"}, "date": "2018-07-19T13:10:59.123-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999974592", "display": "Dr. Liane379 Kunze215"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|8a990ec7-9b5c-389f-9806-59d1113dfaae", "display": "NEWMAN REGIONAL HEALTH"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTkKCiMgQ2hpZWYgQ29tcGxhaW50Ck5vIGNvbXBsYWludHMuCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzCkFuYW1hcmlhNDYKIGlzIGEgMTkgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIHN0cmVzcyAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5CiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMTYuCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgbWlkZGxlIHNvY2lvZWNvbm9taWMgYmFja2dyb3VuZC4KIFBhdGllbnQgaGFzIGNvbXBsZXRlZCBzb21lIGNvbGxlZ2UgY291cnNlcy4KUGF0aWVudCBjdXJyZW50bHkgaGFzIE1lZGljYWlkLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwphY2V0YW1pbm9waGVuIDMyNSBtZyAvIG94eWNvZG9uZSBoeWRyb2NobG9yaWRlIDEwIG1nIG9yYWwgdGFibGV0IFtwZXJjb2NldF07IHRyaW5lc3NhIDI4IGRheSBwYWNrOyAxIG1sIG1lZHJveHlwcm9nZXN0ZXJvbmUgYWNldGF0ZSAxNTAgbWcvbWwgaW5qZWN0aW9uOyAxMiBociBoeWRyb2NvZG9uZSBiaXRhcnRyYXRlIDEwIG1nIGV4dGVuZGVkIHJlbGVhc2Ugb3JhbCBjYXBzdWxlOyA3MiBociBmZW50YW55bCAwLjAyNSBtZy9ociB0cmFuc2Rlcm1hbCBzeXN0ZW0KCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBpbnRyYW11c2N1bGFyIGluamVjdGlvbgo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/6565ef5c-30b9-8697-6ca6-2b77894d5437"}], "period": {"start": "2018-07-19T13:10:59-04:00", "end": "2018-07-19T13:30:01-04:00"}}} +{"resourceType": "DocumentReference", "id": "48693636-4eec-ad3d-b71d-8f650bd0a6f1", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:129e6239-3bdb-bfce-3875-feb872699659"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/c7ad408d-fcae-b54a-eb1d-26d48f7a5f84"}, "date": "2018-06-06T21:53:54.029-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999947390", "display": "Dr. Theo630 Mante251"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|bb36f14b-85a6-392b-a0d5-38b320a2b019", "display": "ADVENTHEALTH RANSOM MEMORIAL INC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDYtMDYKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gQmx1cnJlZCBWaXNpb24KCgojIEhpc3Rvcnkgb2YgUHJlc2VudCBJbGxuZXNzClRhcnNoYTY1IFJhc2hpZGE1NTgKIGlzIGEgNTcgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2Ygc3RyZXB0b2NvY2NhbCBzb3JlIHRocm9hdCAoZGlzb3JkZXIpLCBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGFjdXRlIGJyb25jaGl0aXMgKGRpc29yZGVyKSwgYWN1dGUgYmFjdGVyaWFsIHNpbnVzaXRpcyAoZGlzb3JkZXIpLCBzZXZlcmUgYW54aWV0eSAocGFuaWMpIChmaW5kaW5nKSwgbGltaXRlZCBzb2NpYWwgY29udGFjdCAoZmluZGluZyksIG5vdCBpbiBsYWJvciBmb3JjZSAoZmluZGluZyksIGZ1bGwtdGltZSBlbXBsb3ltZW50IChmaW5kaW5nKSwgdmlyYWwgc2ludXNpdGlzIChkaXNvcmRlciksIHZpY3RpbSBvZiBpbnRpbWF0ZSBwYXJ0bmVyIGFidXNlIChmaW5kaW5nKSwgc3RyZXNzIChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgbWFycmllZC4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIG1pZGRsZSBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGRpZCBub3QgZmluaXNoIGhpZ2ggc2Nob29sLgpQYXRpZW50IGN1cnJlbnRseSBoYXMgQ2lnbmEgSGVhbHRoLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwphY2V0YW1pbm9waGVuIDMyNSBtZyBvcmFsIHRhYmxldDsgc2ltdmFzdGF0aW4gMTAgbWcgb3JhbCB0YWJsZXQ7IDI0IGhyIG1ldGZvcm1pbiBoeWRyb2NobG9yaWRlIDUwMCBtZyBleHRlbmRlZCByZWxlYXNlIG9yYWwgdGFibGV0OyBwZW5pY2lsbGluIHYgcG90YXNzaXVtIDUwMCBtZyBvcmFsIHRhYmxldDsgaHlkcm9jaGxvcm90aGlhemlkZSAyNSBtZyBvcmFsIHRhYmxldDsgYWNldGFtaW5vcGhlbiAzMjUgbWcgb3JhbCB0YWJsZXQgW3R5bGVub2xdCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgcGF0aWVudCB3YXMgcHJlc2NyaWJlZCB0aGUgZm9sbG93aW5nIG1lZGljYXRpb25zOgotIGh5ZHJvY2hsb3JvdGhpYXppZGUgMjUgbWcgb3JhbCB0YWJsZXQKLSBhY2V0YW1pbm9waGVuIDMyNSBtZyBvcmFsIHRhYmxldCBbdHlsZW5vbF0KLSAyNCBociBtZXRmb3JtaW4gaHlkcm9jaGxvcmlkZSA1MDAgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIHRhYmxldAotIGNsb3BpZG9ncmVsIDc1IG1nIG9yYWwgdGFibGV0Ci0gc2ltdmFzdGF0aW4gMjAgbWcgb3JhbCB0YWJsZXQKLSAyNCBociBtZXRvcHJvbG9sIHN1Y2NpbmF0ZSAxMDAgbWcgZXh0ZW5kZWQgcmVsZWFzZSBvcmFsIHRhYmxldAotIG5pdHJvZ2x5Y2VyaW4gMC40IG1nL2FjdHVhdCBtdWNvc2FsIHNwcmF5Cg=="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/02eb4e14-1a6f-d968-2c26-c0cf5023afe0"}], "period": {"start": "2018-06-06T21:53:54-04:00", "end": "2018-06-06T22:08:54-04:00"}}} +{"resourceType": "DocumentReference", "id": "48933dd8-3fcf-416e-89ca-27851e45391f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:865b9bb9-f9db-a0b8-bbf7-6a78f003c795"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/7cef0e6f-9aea-4079-dfc6-18a96454708e"}, "date": "2018-07-29T11:06:48.655-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999989491", "display": "Dr. Claudia969 Salda\u00f1a5"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|a7648ddf-8655-35be-9eae-7347639edf96", "display": "MAO LEAWOOD SURGERY CENTER LLC"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMjkKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gRmF0aWd1ZQotIEZyZXF1ZW50IFVyaW5hdGlvbgotIEh1bmdlcgoKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKR2lsbGlhbjQ4NCBTaGVyb241ODMKIGlzIGEgNjEgeWVhci1vbGQgbm9uaGlzcGFuaWMgd2hpdGUgZmVtYWxlLiBQYXRpZW50IGhhcyBhIGhpc3Rvcnkgb2YgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAzIChkaXNvcmRlciksIGFjdXRlIHZpcmFsIHBoYXJ5bmdpdGlzIChkaXNvcmRlciksIHBvbHlwIG9mIGNvbG9uLCB2aWN0aW0gb2YgaW50aW1hdGUgcGFydG5lciBhYnVzZSAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgNCAoZGlzb3JkZXIpLCBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGNocm9uaWMga2lkbmV5IGRpc2Vhc2Ugc3RhZ2UgMiAoZGlzb3JkZXIpLCBsaW1pdGVkIHNvY2lhbCBjb250YWN0IChmaW5kaW5nKSwgbm90IGluIGxhYm9yIGZvcmNlIChmaW5kaW5nKSwgY2hyb25pYyBraWRuZXkgZGlzZWFzZSBzdGFnZSAxIChkaXNvcmRlciksIHJlcG9ydHMgb2YgdmlvbGVuY2UgaW4gdGhlIGVudmlyb25tZW50IChmaW5kaW5nKSwgZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBhd2FpdGluZyB0cmFuc3BsYW50YXRpb24gb2Yga2lkbmV5IChzaXR1YXRpb24pLCBzb2NpYWwgaXNvbGF0aW9uIChmaW5kaW5nKSwgc3RyZXNzIChmaW5kaW5nKS4KCiMgU29jaWFsIEhpc3RvcnkKUGF0aWVudCBpcyBtYXJyaWVkLiBQYXRpZW50IHF1aXQgc21va2luZyBhdCBhZ2UgMjIuCiBQYXRpZW50IGlkZW50aWZpZXMgYXMgaGV0ZXJvc2V4dWFsLgoKUGF0aWVudCBjb21lcyBmcm9tIGEgaGlnaCBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBjb21wbGV0ZWQgc29tZSBjb2xsZWdlIGNvdXJzZXMuClBhdGllbnQgY3VycmVudGx5IGhhcyBVbml0ZWRIZWFsdGhjYXJlLgoKIyBBbGxlcmdpZXMKTm8gS25vd24gQWxsZXJnaWVzLgoKIyBNZWRpY2F0aW9ucwoxIG1sIGVwb2V0aW4gYWxmYSA0MDAwIHVudC9tbCBpbmplY3Rpb24gW2Vwb2dlbl07IGh5ZHJvY2hsb3JvdGhpYXppZGUgMjUgbWcgb3JhbCB0YWJsZXQ7IGluc3VsaW4gaXNvcGhhbmUsIGh1bWFuIDcwIHVudC9tbCAvIGluc3VsaW4sIHJlZ3VsYXIsIGh1bWFuIDMwIHVudC9tbCBpbmplY3RhYmxlIHN1c3BlbnNpb24gW2h1bXVsaW5dCgojIEFzc2Vzc21lbnQgYW5kIFBsYW4KCgojIyBQbGFuCgpUaGUgZm9sbG93aW5nIHByb2NlZHVyZXMgd2VyZSBjb25kdWN0ZWQ6Ci0gcmVuYWwgZGlhbHlzaXMgKHByb2NlZHVyZSkKVGhlIHBhdGllbnQgd2FzIHByZXNjcmliZWQgdGhlIGZvbGxvd2luZyBtZWRpY2F0aW9uczoKLSAxIG1sIGVwb2V0aW4gYWxmYSA0MDAwIHVudC9tbCBpbmplY3Rpb24gW2Vwb2dlbl0K"}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/d735c414-9dd3-c9b1-285c-8da79a7fbbdf"}], "period": {"start": "2018-07-29T11:06:48-04:00", "end": "2018-07-29T13:55:48-04:00"}}} +{"resourceType": "DocumentReference", "id": "4b2e99d5-d4c2-fd1f-a5fd-96fe9546b58a", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"]}, "identifier": [{"system": "urn:ietf:rfc:3986", "value": "urn:uuid:611629b8-385b-ec25-062e-3a2f45c74605"}], "status": "current", "type": {"coding": [{"system": "http://loinc.org", "code": "34111-5", "display": "Emergency department note"}, {"system": "http://loinc.org", "code": "51847-2", "display": "Evaluation + Plan note"}]}, "category": [{"coding": [{"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category", "code": "clinical-note", "display": "Clinical Note"}]}], "subject": {"reference": "Patient/6385ddd7-2639-6505-3789-0521b8f66c8b"}, "date": "2018-07-10T18:51:20.673-04:00", "author": [{"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}], "custodian": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|97ec0051-f3fb-3876-9f88-4c335d090345", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}, "content": [{"attachment": {"contentType": "text/plain; charset=utf-8", "data": "CjIwMTgtMDctMTAKCiMgQ2hpZWYgQ29tcGxhaW50Ci0gSHVuZ2VyCi0gQmx1cnJlZCBWaXNpb24KLSBUaW5nbGluZyBpbiBIYW5kcyBhbmQgRmVldAotIFRoaXJzdAotIEZyZXF1ZW50IFVyaW5hdGlvbgoKCiMgSGlzdG9yeSBvZiBQcmVzZW50IElsbG5lc3MKRWRhNTA2IE5pY2hvbGxlODIyCiBpcyBhIDk5IHllYXItb2xkIG5vbmhpc3BhbmljIHdoaXRlIGZlbWFsZS4gUGF0aWVudCBoYXMgYSBoaXN0b3J5IG9mIHNldmVyZSBhbnhpZXR5IChwYW5pYykgKGZpbmRpbmcpLCB2aWN0aW0gb2YgaW50aW1hdGUgcGFydG5lciBhYnVzZSAoZmluZGluZyksIHZpcmFsIHNpbnVzaXRpcyAoZGlzb3JkZXIpLCBwYXJ0LXRpbWUgZW1wbG95bWVudCAoZmluZGluZyksIGxpbWl0ZWQgc29jaWFsIGNvbnRhY3QgKGZpbmRpbmcpLCBub3QgaW4gbGFib3IgZm9yY2UgKGZpbmRpbmcpLCB1bmhlYWx0aHkgYWxjb2hvbCBkcmlua2luZyBiZWhhdmlvciAoZmluZGluZyksIHJlcG9ydHMgb2YgdmlvbGVuY2UgaW4gdGhlIGVudmlyb25tZW50IChmaW5kaW5nKSwgZnVsbC10aW1lIGVtcGxveW1lbnQgKGZpbmRpbmcpLCBwYXRob2xvZ2ljYWwgZnJhY3R1cmUgZHVlIHRvIG9zdGVvcG9yb3NpcyAoZGlzb3JkZXIpLCBmcmFjdHVyZSBzdWJsdXhhdGlvbiBvZiB3cmlzdCwgc3RyZXNzIChmaW5kaW5nKSwgc29jaWFsIGlzb2xhdGlvbiAoZmluZGluZykuCgojIFNvY2lhbCBIaXN0b3J5ClBhdGllbnQgaXMgbWFycmllZC4gUGF0aWVudCBoYXMgbmV2ZXIgc21va2VkLgogUGF0aWVudCBpZGVudGlmaWVzIGFzIGhldGVyb3NleHVhbC4KClBhdGllbnQgY29tZXMgZnJvbSBhIG1pZGRsZSBzb2Npb2Vjb25vbWljIGJhY2tncm91bmQuCiBQYXRpZW50IGhhcyBjb21wbGV0ZWQgc29tZSBjb2xsZWdlIGNvdXJzZXMuClBhdGllbnQgY3VycmVudGx5IGhhcyBNZWRpY2FyZS4KCiMgQWxsZXJnaWVzCk5vIEtub3duIEFsbGVyZ2llcy4KCiMgTWVkaWNhdGlvbnMKaHlkcm9jaGxvcm90aGlhemlkZSAyNSBtZyBvcmFsIHRhYmxldDsgYW1sb2RpcGluZSAyLjUgbWcgb3JhbCB0YWJsZXQ7IGluc3VsaW4gaXNvcGhhbmUsIGh1bWFuIDcwIHVudC9tbCAvIGluc3VsaW4sIHJlZ3VsYXIsIGh1bWFuIDMwIHVudC9tbCBpbmplY3RhYmxlIHN1c3BlbnNpb24gW2h1bXVsaW5dOyBhc3BpcmluIDgxIG1nIG9yYWwgY2Fwc3VsZTsgbmFwcm94ZW4gc29kaXVtIDIyMCBtZyBvcmFsIHRhYmxldDsgbWVwZXJpZGluZSBoeWRyb2NobG9yaWRlIDUwIG1nIG9yYWwgdGFibGV0OyBhbW94aWNpbGxpbiAyNTAgbWcgLyBjbGF2dWxhbmF0ZSAxMjUgbWcgb3JhbCB0YWJsZXQKCiMgQXNzZXNzbWVudCBhbmQgUGxhbgoKCiMjIFBsYW4KClRoZSBmb2xsb3dpbmcgcHJvY2VkdXJlcyB3ZXJlIGNvbmR1Y3RlZDoKLSBtZWRpY2F0aW9uIHJlY29uY2lsaWF0aW9uIChwcm9jZWR1cmUpClRoZSBwYXRpZW50IHdhcyBwcmVzY3JpYmVkIHRoZSBmb2xsb3dpbmcgbWVkaWNhdGlvbnM6Ci0gaW5zdWxpbiBpc29waGFuZSwgaHVtYW4gNzAgdW50L21sIC8gaW5zdWxpbiwgcmVndWxhciwgaHVtYW4gMzAgdW50L21sIGluamVjdGFibGUgc3VzcGVuc2lvbiBbaHVtdWxpbl0KLSBoeWRyb2NobG9yb3RoaWF6aWRlIDI1IG1nIG9yYWwgdGFibGV0Ci0gYXNwaXJpbiA4MSBtZyBvcmFsIGNhcHN1bGUKLSBhbWxvZGlwaW5lIDIuNSBtZyBvcmFsIHRhYmxldAo="}, "format": {"system": "http://ihe.net/fhir/ihe.formatcode.fhir/CodeSystem/formatcode", "code": "urn:ihe:iti:xds:2017:mimeTypeSufficient", "display": "mimeType Sufficient"}}], "context": {"encounter": [{"reference": "Encounter/fd0754a4-e96d-cba7-b3c0-77697a09c86e"}], "period": {"start": "2018-07-10T18:51:20-04:00", "end": "2018-07-10T19:06:20-04:00"}}} diff --git a/tests/test_data/duckdb_data/encounter/filenames.do.not.matter.ndjson b/tests/test_data/duckdb_data/encounter/filenames.do.not.matter.ndjson new file mode 100644 index 00000000..9102bc62 --- /dev/null +++ b/tests/test_data/duckdb_data/encounter/filenames.do.not.matter.ndjson @@ -0,0 +1,50 @@ +{"resourceType": "Encounter", "id": "5c994000-aa78-2be5-e6cf-99f230d50c2f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "5c994000-aa78-2be5-e6cf-99f230d50c2f"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185349003", "display": "Encounter for check up (procedure)"}], "text": "Encounter for check up (procedure)"}], "subject": {"reference": "Patient/9eaa056b-1efc-0cc8-70ff-62c8f704cc13", "display": "Mr. Waldo53 Amado512 Glover433"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-13T13:30:43-04:00", "end": "2018-07-13T13:45:43-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999970798", "display": "Dr. Tamra871 Kerluke267"}}], "period": {"start": "2018-07-13T13:30:43-04:00", "end": "2018-07-13T13:45:43-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|81846412-0624-32f7-86d8-ee6eccb07942", "display": "Wichita Vet Center"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|979603fb-1332-36b1-988f-21c2347aa1ad", "display": "Wichita Vet Center"}} +{"resourceType": "Encounter", "id": "683b04eb-663a-849f-715f-4ccd70bf1524", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "683b04eb-663a-849f-715f-4ccd70bf1524"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "410620009", "display": "Well child visit (procedure)"}], "text": "Well child visit (procedure)"}], "subject": {"reference": "Patient/cc9fb8e2-fe52-b72a-aebb-9d10260f121b", "display": "Babette571 Mignon230 Bashirian201"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-26T19:42:29-04:00", "end": "2018-07-26T19:57:29-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999932699", "display": "Dr. Julia241 Quintana711"}}], "period": {"start": "2018-07-26T19:42:29-04:00", "end": "2018-07-26T19:57:29-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|36b7a3c9-9190-3b4c-bb4e-b83f64b6cbdb", "display": "MAKING CONNECTIONS, LLC INDIVIDUAL AND FAMILY SERVICES"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|b59d77b5-7b57-3f7e-9a76-5e0e1ef4f62d", "display": "MAKING CONNECTIONS, LLC INDIVIDUAL AND FAMILY SERVICES"}} +{"resourceType": "Encounter", "id": "e613f29d-7505-6f2e-a1f5-bfbec300752d", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "e613f29d-7505-6f2e-a1f5-bfbec300752d"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "448337001", "display": "Telemedicine consultation with patient"}], "text": "Telemedicine consultation with patient"}], "subject": {"reference": "Patient/1c498b42-61fd-6341-69c3-053f6e4fe404", "display": "Mrs. Kala987 Katlyn29 Daniel959"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-29T00:31:23-04:00", "end": "2018-06-29T00:46:23-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999896399", "display": "Dr. Tiffani287 Toy286"}}], "period": {"start": "2018-06-29T00:31:23-04:00", "end": "2018-06-29T00:46:23-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "88805009", "display": "Chronic congestive heart failure (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|0b9875ba-9310-313d-93d4-bf552585d527", "display": "LIFE CARE CENTER OF BURLINGTON"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|658bfe6a-1b87-3ca3-9923-959fd4e14477", "display": "LIFE CARE CENTER OF BURLINGTON"}} +{"resourceType": "Encounter", "id": "1154d05c-8727-9373-4224-25b9fdba9ab3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "1154d05c-8727-9373-4224-25b9fdba9ab3"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "162673000", "display": "General examination of patient (procedure)"}], "text": "General examination of patient (procedure)"}], "subject": {"reference": "Patient/24906e2c-e556-71dc-23d9-3e1d5fb08986", "display": "Mrs. Sofia418 Natalia964 Armas910"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-14T19:21:26-04:00", "end": "2018-06-14T19:57:04-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999949198", "display": "Dr. Florance664 Leannon79"}}], "period": {"start": "2018-06-14T19:21:26-04:00", "end": "2018-06-14T19:57:04-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|b4f5949b-6d3a-342d-b7fb-53f277207a64", "display": "HOSPITAL DISTRICT NO 6 OF HARPER COUNTY KANSAS"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|e3963cc4-4b2d-3626-97d2-96cf2aaf50fe", "display": "HOSPITAL DISTRICT NO 6 OF HARPER COUNTY KANSAS"}} +{"resourceType": "Encounter", "id": "d5f342b7-017c-f2e7-8697-5a038c91518e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "d5f342b7-017c-f2e7-8697-5a038c91518e"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "424619006", "display": "Prenatal visit"}], "text": "Prenatal visit"}], "subject": {"reference": "Patient/2da1bee2-2bc2-4511-84e1-42860310e2fb", "display": "Ms. Robena997 Stephanie963 Reichert620"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-28T13:41:29-04:00", "end": "2018-07-28T13:56:29-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999994699", "display": "Dr. Delcie812 Casper496"}}], "period": {"start": "2018-07-28T13:41:29-04:00", "end": "2018-07-28T13:56:29-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "72892002", "display": "Normal pregnancy"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|144d498e-b5c8-3eb9-9fb3-c2944e4df9e5", "display": "LAWRENCE MEMORIAL HOSPITAL"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|32aae164-8dc5-3fea-9030-8f3cfdf75437", "display": "LAWRENCE MEMORIAL HOSPITAL"}} +{"resourceType": "Encounter", "id": "4b03a408-6694-88e3-0e63-3ee464ecd6cd", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "4b03a408-6694-88e3-0e63-3ee464ecd6cd"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185349003", "display": "Encounter for check up (procedure)"}], "text": "Encounter for check up (procedure)"}], "subject": {"reference": "Patient/5ce2e599-fb6e-9b4d-3c2e-87310619b957", "display": "Mr. Edwin773 Heath320 Durgan499"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-10T20:08:47-04:00", "end": "2018-07-10T20:23:47-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999997593", "display": "Dr. Felix524 Rogahn59"}}], "period": {"start": "2018-07-10T20:08:47-04:00", "end": "2018-07-10T20:23:47-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|926fbab5-6b81-3444-a857-be590b2f5182", "display": "MIAMI COUNTY MEDICAL CENTER"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|19e089bf-5ece-3e47-b627-db98f75e78e0", "display": "MIAMI COUNTY MEDICAL CENTER"}} +{"resourceType": "Encounter", "id": "65f8fdca-a949-80a0-8072-094e9aaee474", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "65f8fdca-a949-80a0-8072-094e9aaee474"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185345009", "display": "Encounter for symptom"}], "text": "Encounter for symptom"}], "subject": {"reference": "Patient/7f941bcc-e7b2-99e1-585f-129d0ef1c13d", "display": "Sandie760 Christin490 Bins636"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-17T10:52:50-04:00", "end": "2018-06-17T11:16:28-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999993691", "display": "Dr. Jacques50 Quigley282"}}], "period": {"start": "2018-06-17T10:52:50-04:00", "end": "2018-06-17T11:16:28-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "10509002", "display": "Acute bronchitis (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|0f5b31f7-abc5-340b-bf01-a69ce2671520", "display": "SALINA REGIONAL HEALTH CENTER INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|e56c3b54-e7ed-3f11-bebd-861072870829", "display": "SALINA REGIONAL HEALTH CENTER INC"}} +{"resourceType": "Encounter", "id": "75312bd2-d5ac-c62e-c9df-0004783725c7", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "75312bd2-d5ac-c62e-c9df-0004783725c7"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "410620009", "display": "Well child visit (procedure)"}], "text": "Well child visit (procedure)"}], "subject": {"reference": "Patient/3ae095ec-8fe0-133b-36d4-8785a6ad8df3", "display": "Shanice479 Chloe501 Dach178"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-02T04:45:37-04:00", "end": "2018-07-02T05:00:37-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999929398", "display": "Dr. Graham902 Mayert710"}}], "period": {"start": "2018-07-02T04:45:37-04:00", "end": "2018-07-02T05:00:37-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|a71c323d-7a24-3bfb-9a84-b206733a5d00", "display": "OPTIMAL HEALTH AND WELLNESS, LLC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|4a47362d-91e6-399b-a026-96e2ed15f9f3", "display": "OPTIMAL HEALTH AND WELLNESS, LLC"}} +{"resourceType": "Encounter", "id": "b864bcd8-14e0-8bec-b7cc-f8629d91470e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "b864bcd8-14e0-8bec-b7cc-f8629d91470e"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "698314001", "display": "Consultation for treatment"}], "text": "Consultation for treatment"}], "subject": {"reference": "Patient/c20e5afd-30df-ac3d-6684-cc29438a9bc4", "display": "Ms. Christia477 Stehr398"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-28T02:22:49-04:00", "end": "2018-06-28T02:40:48-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999997593", "display": "Dr. Felix524 Rogahn59"}}], "period": {"start": "2018-06-28T02:22:49-04:00", "end": "2018-06-28T02:40:48-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|926fbab5-6b81-3444-a857-be590b2f5182", "display": "MIAMI COUNTY MEDICAL CENTER"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|19e089bf-5ece-3e47-b627-db98f75e78e0", "display": "MIAMI COUNTY MEDICAL CENTER"}} +{"resourceType": "Encounter", "id": "f2752dd7-1bf1-739d-dd8c-40122d0b63bc", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "f2752dd7-1bf1-739d-dd8c-40122d0b63bc"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "439740005", "display": "Postoperative follow-up visit (procedure)"}], "text": "Postoperative follow-up visit (procedure)"}], "subject": {"reference": "Patient/9c8d8539-0b1e-73e2-b64f-83f1ea601fa4", "display": "Mr. Frederic454 Fahey393"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-01T19:33:08-04:00", "end": "2018-06-01T21:11:27-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999987099", "display": "Dr. Trinidad33 King743"}}], "period": {"start": "2018-06-01T19:33:08-04:00", "end": "2018-06-01T21:11:27-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "161665007", "display": "History of renal transplant (situation)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|a1da94de-c095-39f7-ad86-69a1f8c01a16", "display": "MEMORIAL HOSPITAL"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|375dea7e-5915-3a35-8755-c5b24126ddf9", "display": "MEMORIAL HOSPITAL"}} +{"resourceType": "Encounter", "id": "299b6495-3fe7-8db3-c494-6e1ce8b7986d", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "299b6495-3fe7-8db3-c494-6e1ce8b7986d"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185349003", "display": "Encounter for check up (procedure)"}], "text": "Encounter for check up (procedure)"}], "subject": {"reference": "Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4", "display": "Mr. Hugo693 Jos\u00e9 Eduardo181 Rosales49"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-02T11:55:39-04:00", "end": "2018-06-02T12:46:37-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999994699", "display": "Dr. Delcie812 Casper496"}}], "period": {"start": "2018-06-02T11:55:39-04:00", "end": "2018-06-02T12:46:37-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|144d498e-b5c8-3eb9-9fb3-c2944e4df9e5", "display": "LAWRENCE MEMORIAL HOSPITAL"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|32aae164-8dc5-3fea-9030-8f3cfdf75437", "display": "LAWRENCE MEMORIAL HOSPITAL"}} +{"resourceType": "Encounter", "id": "ed151e04-3dd6-8cb7-a3e5-777c8a8667f1", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "ed151e04-3dd6-8cb7-a3e5-777c8a8667f1"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185345009", "display": "Encounter for symptom"}], "text": "Encounter for symptom"}], "subject": {"reference": "Patient/19158de4-66a2-f70f-e3bf-4396b312c8f1", "display": "Mrs. Tawanda156 Kenneth671 Hills818"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-05T22:02:28-04:00", "end": "2018-06-05T22:17:28-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999977694", "display": "Dr. Shelby741 Shields502"}}], "period": {"start": "2018-06-05T22:02:28-04:00", "end": "2018-06-05T22:17:28-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "195662009", "display": "Acute viral pharyngitis (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|a7b67686-eb6b-3bfd-8b90-7edc1e843065", "display": "HOSPITAL DISTRICT NO 1 CRAWFORD COUNTY"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|b3f43d2d-d6b3-3087-9567-fb1ff9a9ef3a", "display": "HOSPITAL DISTRICT NO 1 CRAWFORD COUNTY"}} +{"resourceType": "Encounter", "id": "83d0d564-3bbf-48eb-7445-bd2b81130671", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "83d0d564-3bbf-48eb-7445-bd2b81130671"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "EMER"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "50849002", "display": "Emergency room admission (procedure)"}], "text": "Emergency room admission (procedure)"}], "subject": {"reference": "Patient/16be855b-ece2-8b96-1ef9-a4d93adf3289", "display": "Mr. Herschel574 Kasey569 Bauch723"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-16T19:51:47-04:00", "end": "2018-06-17T04:51:47-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999899799", "display": "Dr. Ted955 O'Connell601"}}], "period": {"start": "2018-06-16T19:51:47-04:00", "end": "2018-06-17T04:51:47-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "55680006", "display": "Drug overdose"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|4dce7855-6fb3-3c29-b858-f1698395be3b", "display": "LAWRENCE PRESBYTERIAN MANOR"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|1d2da245-51a6-3901-a7ab-37a415608abd", "display": "LAWRENCE PRESBYTERIAN MANOR"}} +{"resourceType": "Encounter", "id": "79d8f213-7847-646b-8a66-5da208cc1c27", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "79d8f213-7847-646b-8a66-5da208cc1c27"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185347001", "display": "Encounter for problem (procedure)"}], "text": "Encounter for problem (procedure)"}], "subject": {"reference": "Patient/26a3984f-b2a8-e67f-7abc-ff147a0e6e35", "display": "Mr. Antonia30 Luciano237 Runolfsson901"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-14T15:28:20-04:00", "end": "2018-07-14T18:04:20-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999970897", "display": "Dr. Thanh759 Cartwright189"}}], "period": {"start": "2018-07-14T15:28:20-04:00", "end": "2018-07-14T18:04:20-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "431857002", "display": "Chronic kidney disease stage 4 (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|feb3e62d-3cc6-34ca-9ac4-55e5d057ed0f", "display": "Manhattan Vet Center"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|18f1149f-e874-31bc-93c6-da6dadd199b9", "display": "Manhattan Vet Center"}} +{"resourceType": "Encounter", "id": "de9d67de-6ae3-32f7-20f2-e719ae23a9a3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "de9d67de-6ae3-32f7-20f2-e719ae23a9a3"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "410620009", "display": "Well child visit (procedure)"}], "text": "Well child visit (procedure)"}], "subject": {"reference": "Patient/2858705f-5af1-9869-4d94-894e09a9f99a", "display": "Albert312 Carlos172 Crist667"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-30T14:20:11-04:00", "end": "2018-07-30T14:35:11-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999942599", "display": "Dr. Regenia619 Bosco882"}}], "period": {"start": "2018-07-30T14:20:11-04:00", "end": "2018-07-30T14:35:11-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|f70e2ebf-64c0-3fb3-9961-8c0f0fcaae45", "display": "NORTHWEST FAMILY PHYSICIANS, LLC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|ec7dadfd-1c05-334c-a34d-7a6c92b64d40", "display": "NORTHWEST FAMILY PHYSICIANS, LLC"}} +{"resourceType": "Encounter", "id": "98d4bd14-d78e-debb-e7dc-2df7786aedf3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "98d4bd14-d78e-debb-e7dc-2df7786aedf3"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185349003", "display": "Encounter for check up (procedure)"}], "text": "Encounter for check up (procedure)"}], "subject": {"reference": "Patient/e455ca3f-fc16-6ffc-297a-adc27e2db183", "display": "Mr. Rodrigo242 Alejandro916 Gamboa193"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-09T09:23:51-04:00", "end": "2018-07-09T09:38:51-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995092", "display": "Dr. Cristi782 Leannon79"}}], "period": {"start": "2018-07-09T09:23:51-04:00", "end": "2018-07-09T09:38:51-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|6595d238-3656-3949-bd86-5e4a02f58f7c", "display": "ASCENSION VIA CHRISTI HOSPITAL PITTSBURG INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|a48fd0a0-3960-31bf-b63c-9c82840df767", "display": "ASCENSION VIA CHRISTI HOSPITAL PITTSBURG INC"}} +{"resourceType": "Encounter", "id": "aa890974-162f-5906-dc71-2bb6d2185314", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "aa890974-162f-5906-dc71-2bb6d2185314"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185347001", "display": "Encounter for problem (procedure)"}], "text": "Encounter for problem (procedure)"}], "subject": {"reference": "Patient/c7c5c028-f1fb-962b-8db2-dfd4c6d6b02a", "display": "Mr. Chadwick722 Rupert654 Kunde533"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-02T04:32:30-04:00", "end": "2018-07-02T07:00:30-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999994491", "display": "Dr. Carlton317 Koch169"}}], "period": {"start": "2018-07-02T04:32:30-04:00", "end": "2018-07-02T07:00:30-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "431857002", "display": "Chronic kidney disease stage 4 (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|ea4c0bce-17ef-33f7-b402-214054c48400", "display": "ASCENSION VIA CHRISTI HOSPITALS WICHITA INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|6309bc08-9f17-3d65-9975-1a7e7323ad9b", "display": "ASCENSION VIA CHRISTI HOSPITALS WICHITA INC"}} +{"resourceType": "Encounter", "id": "dc5ed645-3979-e765-3e03-6ba2173027c3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "dc5ed645-3979-e765-3e03-6ba2173027c3"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "702927004", "display": "Urgent care clinic (environment)"}], "text": "Urgent care clinic (environment)"}], "subject": {"reference": "Patient/ac91b90d-97e4-4fc5-41cd-036bac49e6e8", "display": "Mr. Man114 Rob341 Pouros728"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-07T02:21:46-04:00", "end": "2018-07-07T02:36:46-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}}], "period": {"start": "2018-07-07T02:21:46-04:00", "end": "2018-07-07T02:36:46-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|f468f5f4-1d57-37a9-9f5d-03cb3ecb8448", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|97ec0051-f3fb-3876-9f88-4c335d090345", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}} +{"resourceType": "Encounter", "id": "8ff1dc01-5a28-b2d8-3b42-4b7a7d539970", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "8ff1dc01-5a28-b2d8-3b42-4b7a7d539970"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185349003", "display": "Encounter for check up (procedure)"}], "text": "Encounter for check up (procedure)"}], "subject": {"reference": "Patient/c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0", "display": "Mrs. Dorthea49 Julene165 Bosco882"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-15T12:48:03-04:00", "end": "2018-07-15T13:22:50-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999989491", "display": "Dr. Claudia969 Salda\u00f1a5"}}], "period": {"start": "2018-07-15T12:48:03-04:00", "end": "2018-07-15T13:22:50-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|e65f88a3-4068-374c-87b4-0fe37076ba01", "display": "MAO LEAWOOD SURGERY CENTER LLC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|a7648ddf-8655-35be-9eae-7347639edf96", "display": "MAO LEAWOOD SURGERY CENTER LLC"}} +{"resourceType": "Encounter", "id": "4c4d0730-201f-5b75-c657-8d0de09cc28f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "4c4d0730-201f-5b75-c657-8d0de09cc28f"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "702927004", "display": "Urgent care clinic (environment)"}], "text": "Urgent care clinic (environment)"}], "subject": {"reference": "Patient/267fc42d-cd9e-8527-1f9e-887fe7776147", "display": "Mrs. Audrey678 Breanna581 Dooley940"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-14T17:14:11-04:00", "end": "2018-06-14T17:50:39-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}}], "period": {"start": "2018-06-14T17:14:11-04:00", "end": "2018-06-14T17:50:39-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|f468f5f4-1d57-37a9-9f5d-03cb3ecb8448", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|97ec0051-f3fb-3876-9f88-4c335d090345", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}} +{"resourceType": "Encounter", "id": "2b1ee164-6c87-420d-a9e2-6c235ebeef71", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "2b1ee164-6c87-420d-a9e2-6c235ebeef71"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "702927004", "display": "Urgent care clinic (environment)"}], "text": "Urgent care clinic (environment)"}], "subject": {"reference": "Patient/6a883108-7b87-120b-d163-d369336e04e5", "display": "Mr. Wilfredo622 Leslie90 Halvorson124"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-07T23:14:12-04:00", "end": "2018-06-07T23:29:12-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}}], "period": {"start": "2018-06-07T23:14:12-04:00", "end": "2018-06-07T23:29:12-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|f468f5f4-1d57-37a9-9f5d-03cb3ecb8448", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|97ec0051-f3fb-3876-9f88-4c335d090345", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}} +{"resourceType": "Encounter", "id": "ba84689e-2f9f-7cea-af1f-d69ffdd3a3eb", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "ba84689e-2f9f-7cea-af1f-d69ffdd3a3eb"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "698314001", "display": "Consultation for treatment"}], "text": "Consultation for treatment"}], "subject": {"reference": "Patient/7bf52d54-0d2a-265a-15aa-eeed7aaf4af6", "display": "Mrs. Alessandra932 Kyong970 Zieme486"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-15T03:05:37-04:00", "end": "2018-06-15T03:20:37-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999981993", "display": "Dr. Kirk871 Erdman779"}}], "period": {"start": "2018-06-15T03:05:37-04:00", "end": "2018-06-15T03:20:37-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|916bc307-a148-3df3-aee8-a3760acab4a9", "display": "NINNESCAH VALLEY HEALTH SYSTEMS INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|34a95aab-dcd3-3dd1-9bed-b2cd7b8f0934", "display": "NINNESCAH VALLEY HEALTH SYSTEMS INC"}} +{"resourceType": "Encounter", "id": "91f94a9d-69a7-e30a-cd1a-68c52dc01e70", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "91f94a9d-69a7-e30a-cd1a-68c52dc01e70"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "308335008", "display": "Patient encounter procedure"}], "text": "Patient encounter procedure"}], "subject": {"reference": "Patient/a28be3e1-a6bd-7df4-fc81-1140848f8453", "display": "Ms. Leann224 Brittney657 Wilderman619"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-29T09:15:15-04:00", "end": "2018-06-29T09:30:15-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999989897", "display": "Dr. Luther918 Jakubowski832"}}], "period": {"start": "2018-06-29T09:15:15-04:00", "end": "2018-06-29T09:30:15-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|558cd64b-49c0-395d-ae27-1a37a9794095", "display": "RECOVER-CARE MEADOWBROOK REHABILITATION LLC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|87763f1e-5631-3b37-a73a-72a2b7f3e5f4", "display": "RECOVER-CARE MEADOWBROOK REHABILITATION LLC"}} +{"resourceType": "Encounter", "id": "37604257-be1a-120f-81ee-336f81603f92", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "37604257-be1a-120f-81ee-336f81603f92"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185347001", "display": "Encounter for problem (procedure)"}], "text": "Encounter for problem (procedure)"}], "subject": {"reference": "Patient/50f8b42e-17a6-e932-8546-da94004c597c", "display": "Mr. Ronnie7 Chester802 Watsica258"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-16T11:29:16-04:00", "end": "2018-07-16T15:22:16-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999999193", "display": "Dr. Dusty207 Franecki195"}}], "period": {"start": "2018-07-16T11:29:16-04:00", "end": "2018-07-16T15:22:16-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "431857002", "display": "Chronic kidney disease stage 4 (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|8d5e7207-be67-36b1-b102-a06dd021b378", "display": "STORMONT-VAIL HEALTHCARE INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|b06ab2a4-dfb1-31b1-b356-94caaaf94c89", "display": "STORMONT-VAIL HEALTHCARE INC"}} +{"resourceType": "Encounter", "id": "03e34b19-2889-b828-792d-2a83400c55be", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "03e34b19-2889-b828-792d-2a83400c55be"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "EMER"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "50849002", "display": "Emergency room admission (procedure)"}], "text": "Emergency room admission (procedure)"}], "subject": {"reference": "Patient/ad3ed58a-5645-af0a-eeca-ab543123a8aa", "display": "Ms. Veola813 Howe413"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-19T05:10:16-04:00", "end": "2018-07-19T06:10:16-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999903799", "display": "Dr. Jen355 Hintz995"}}], "period": {"start": "2018-07-19T05:10:16-04:00", "end": "2018-07-19T06:10:16-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|ebb5bdbf-a6ea-3b6a-8b35-0d069e99a532", "display": "SHARON LANE HEALTH SERVICES"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|7f307ea1-4eec-3832-a41e-069d34954a2c", "display": "SHARON LANE HEALTH SERVICES"}} +{"resourceType": "Encounter", "id": "f964be66-3fcd-95c8-0021-71c7d24c91b7", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "f964be66-3fcd-95c8-0021-71c7d24c91b7"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185347001", "display": "Encounter for problem (procedure)"}], "text": "Encounter for problem (procedure)"}], "subject": {"reference": "Patient/a5bc08ea-9462-c4f5-1bd2-ff342598ac99", "display": "Ms. Monika509 Jani266 Will178"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-05T04:29:14-04:00", "end": "2018-06-05T07:24:14-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995191", "display": "Dr. Chang901 Kutch271"}}], "period": {"start": "2018-06-05T04:29:14-04:00", "end": "2018-06-05T07:24:14-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "431857002", "display": "Chronic kidney disease stage 4 (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|9e778eaf-2b8c-3276-9979-057882ce5d9f", "display": "UNIVERSITY OF KANSAS HOSPITAL AUTHORITY"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|6544a809-6d34-36c8-9fad-9b64502b77c5", "display": "UNIVERSITY OF KANSAS HOSPITAL AUTHORITY"}} +{"resourceType": "Encounter", "id": "beb26500-4ccd-ce0a-44f6-74f44be5fafe", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "beb26500-4ccd-ce0a-44f6-74f44be5fafe"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "698314001", "display": "Consultation for treatment"}], "text": "Consultation for treatment"}], "subject": {"reference": "Patient/149de67a-2809-59a8-bfa2-36df509021dc", "display": "Ms. Cuc113 Onita767 Bednar518"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-07T08:38:26-04:00", "end": "2018-06-07T08:53:26-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999973990", "display": "Dr. Lan153 Kemmer137"}}], "period": {"start": "2018-06-07T08:38:26-04:00", "end": "2018-06-07T08:53:26-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|aae70cc4-0f43-33e0-9977-58760c0aff78", "display": "COFFEY COUNTY HOSPITAL"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|4bb44a4a-f0cc-316f-abbd-caf8ed29e5ba", "display": "COFFEY COUNTY HOSPITAL"}} +{"resourceType": "Encounter", "id": "ca45bbef-ef2a-3b3c-ea5e-76bcd5865780", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "ca45bbef-ef2a-3b3c-ea5e-76bcd5865780"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "424619006", "display": "Prenatal visit"}], "text": "Prenatal visit"}], "subject": {"reference": "Patient/9b17654f-a902-3d56-9000-4ade3dd3059f", "display": "Mrs. Laura391 Gait\u00e1n874"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-12T18:41:20-04:00", "end": "2018-06-12T18:56:20-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999999391", "display": "Dr. Santo387 Schuppe920"}}], "period": {"start": "2018-06-12T18:41:20-04:00", "end": "2018-06-12T18:56:20-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "72892002", "display": "Normal pregnancy"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|15e8e41f-f6f1-3b50-be5a-0e3c7399bd89", "display": "HCA WESLEY REHABILITATION HOSPITAL INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|650aa83a-c78d-3ed4-8747-94091acb93ff", "display": "HCA WESLEY REHABILITATION HOSPITAL INC"}} +{"resourceType": "Encounter", "id": "32d0ae2d-1be8-9e90-a4da-4c222abd88a9", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "32d0ae2d-1be8-9e90-a4da-4c222abd88a9"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185349003", "display": "Encounter for check up (procedure)"}], "text": "Encounter for check up (procedure)"}], "subject": {"reference": "Patient/17fde357-dcc9-af8b-a8d3-4bd213afeb22", "display": "Mr. Merlin721 Mark765 Hackett68"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-02T09:36:07-04:00", "end": "2018-07-02T10:32:49-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999993196", "display": "Dr. Nicholas495 Greenfelder433"}}], "period": {"start": "2018-07-02T09:36:07-04:00", "end": "2018-07-02T10:32:49-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|2732c346-1d7b-3654-8155-d5c7c17e8fb6", "display": "CHILDREN'S MERCY HOSPITAL KANSAS"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|bbec63c3-d528-3680-9462-49ade979b1f9", "display": "CHILDREN'S MERCY HOSPITAL KANSAS"}} +{"resourceType": "Encounter", "id": "d73ed087-e0ae-78e0-7a05-1bac1060c476", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "d73ed087-e0ae-78e0-7a05-1bac1060c476"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "698314001", "display": "Consultation for treatment"}], "text": "Consultation for treatment"}], "subject": {"reference": "Patient/51032f44-d514-26e9-3e85-e956561c076e", "display": "Ms. Christinia886 Bonnie873 Lowe577"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-10T06:35:55-04:00", "end": "2018-07-10T06:50:55-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995092", "display": "Dr. Cristi782 Leannon79"}}], "period": {"start": "2018-07-10T06:35:55-04:00", "end": "2018-07-10T06:50:55-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|6595d238-3656-3949-bd86-5e4a02f58f7c", "display": "ASCENSION VIA CHRISTI HOSPITAL PITTSBURG INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|a48fd0a0-3960-31bf-b63c-9c82840df767", "display": "ASCENSION VIA CHRISTI HOSPITAL PITTSBURG INC"}} +{"resourceType": "Encounter", "id": "c6ec2350-43d4-abab-2e84-4d2aadb337a7", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "c6ec2350-43d4-abab-2e84-4d2aadb337a7"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "162673000", "display": "General examination of patient (procedure)"}], "text": "General examination of patient (procedure)"}], "subject": {"reference": "Patient/26baae20-c8c5-003a-ab6b-ebcc49be20db", "display": "Mr. Lynwood354 Brady998 Hane680"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-02T07:26:18-04:00", "end": "2018-07-02T07:58:56-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999966093", "display": "Dr. Elias404 Skiles927"}}], "period": {"start": "2018-07-02T07:26:18-04:00", "end": "2018-07-02T07:58:56-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|39e6273a-f1d1-3d95-befa-df0faaee7d5d", "display": "UNITED METHODIST WESTERN KANSAS MEXICAN-AMERICAN MINISTRIES, INC."}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|17759655-9072-31e2-9b27-7a20ba98db55", "display": "UNITED METHODIST WESTERN KANSAS MEXICAN-AMERICAN MINISTRIES, INC."}} +{"resourceType": "Encounter", "id": "c4605953-3103-ede6-e0c0-e0588e6f019e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "c4605953-3103-ede6-e0c0-e0588e6f019e"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "162673000", "display": "General examination of patient (procedure)"}], "text": "General examination of patient (procedure)"}], "subject": {"reference": "Patient/a5b171a7-9b28-20e7-86a7-936ecbf55f36", "display": "Mrs. Patrica776 Noel608 Nader710"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-27T10:08:29-04:00", "end": "2018-07-27T10:47:54-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999952192", "display": "Dr. Joel444 Bins636"}}], "period": {"start": "2018-07-27T10:08:29-04:00", "end": "2018-07-27T10:47:54-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|ab7e5c11-df96-38d1-8157-d0cc5dadfe08", "display": "HUTCHINSON CLINIC WALK-IN CARE"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|5fb102d5-17ef-38a4-bc57-75ecee3948b8", "display": "HUTCHINSON CLINIC WALK-IN CARE"}} +{"resourceType": "Encounter", "id": "b5974881-ae62-ddd6-b905-8c86c1ca9e33", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "b5974881-ae62-ddd6-b905-8c86c1ca9e33"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185347001", "display": "Encounter for problem"}], "text": "Encounter for problem"}], "subject": {"reference": "Patient/47c37c92-5932-9cfe-66be-208556780fe0", "display": "Mr. Jackie93 Jules135 Smitham825"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-25T03:51:54-04:00", "end": "2018-06-25T05:10:39-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999975698", "display": "Dr. Huong243 Jakubowski832"}}], "period": {"start": "2018-06-25T03:51:54-04:00", "end": "2018-06-25T05:10:39-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "271737000", "display": "Anemia (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|277ea07d-8dac-3ab1-b11f-34d7862e2f8b", "display": "HOSPITAL DISTRICT NO 1 OF RICE CO"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|8c19555a-cc0d-31c5-88af-e67b2f61025d", "display": "HOSPITAL DISTRICT NO 1 OF RICE CO"}} +{"resourceType": "Encounter", "id": "366df7d3-2ea9-db22-7cdd-60fa8a5c45ca", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "366df7d3-2ea9-db22-7cdd-60fa8a5c45ca"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185347001", "display": "Encounter for problem (procedure)"}], "text": "Encounter for problem (procedure)"}], "subject": {"reference": "Patient/ad239efc-637c-e428-c829-b87e700d5446", "display": "Mr. Felipe97 Ambrose149 Harris789"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-15T12:35:06-04:00", "end": "2018-06-15T15:19:06-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999997296", "display": "Dr. Harlan808 Langosh790"}}], "period": {"start": "2018-06-15T12:35:06-04:00", "end": "2018-06-15T15:19:06-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "431857002", "display": "Chronic kidney disease stage 4 (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|4d5e409b-3621-32f1-8b4a-8ffea36a86c7", "display": "WESTERN PLAINS MEDICAL COMPLEX"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|2342a2b7-3dfe-3a27-960d-8c9d49e49b6a", "display": "WESTERN PLAINS MEDICAL COMPLEX"}} +{"resourceType": "Encounter", "id": "11381dc6-0e06-da55-0735-d1e7bbf8bb35", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "11381dc6-0e06-da55-0735-d1e7bbf8bb35"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "EMER"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "50849002", "display": "Emergency room admission (procedure)"}], "text": "Emergency room admission (procedure)"}], "subject": {"reference": "Patient/dffa62dc-8ec2-1cd6-ee75-f9156a5283fe", "display": "Cedric746 Kshlerin58"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-15T04:49:59-04:00", "end": "2018-07-15T05:49:59-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999887190", "display": "Dr. Kathie378 Fisher429"}}], "period": {"start": "2018-07-15T04:49:59-04:00", "end": "2018-07-15T05:49:59-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|b2a8e1e6-e738-3b3b-ac1e-a0497b52d1aa", "display": "VIA CHRISTI VILLAGE MCLEAN, INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|2630ed36-5c3b-3c7d-bca3-2d09378a9621", "display": "VIA CHRISTI VILLAGE MCLEAN, INC"}} +{"resourceType": "Encounter", "id": "1d679c3a-2765-5e13-e2a3-4bd76a898fc6", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "1d679c3a-2765-5e13-e2a3-4bd76a898fc6"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185349003", "display": "Encounter for check up"}], "text": "Encounter for check up"}], "subject": {"reference": "Patient/cb8c0665-30ee-479c-8994-d29f1a6848b0", "display": "Mr. Logan497 Farrell962"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-15T08:48:22-04:00", "end": "2018-06-15T09:16:58-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999990499", "display": "Dr. Lynwood354 Tromp100"}}], "period": {"start": "2018-06-15T08:48:22-04:00", "end": "2018-06-15T09:16:58-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|e71e5e03-b8aa-3216-8560-f998fdd2341b", "display": "SHAWNEE MISSION MEDICAL CENTER INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|49dd8fe4-9d52-3e9d-afd4-bd7b51de8b82", "display": "SHAWNEE MISSION MEDICAL CENTER INC"}} +{"resourceType": "Encounter", "id": "6a952afd-3be5-e27e-9e05-5a1e085e34d0", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "6a952afd-3be5-e27e-9e05-5a1e085e34d0"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185345009", "display": "Encounter for symptom"}], "text": "Encounter for symptom"}], "subject": {"reference": "Patient/f9399f0d-5401-09f3-d4ff-89b1aa51b9c8", "display": "Mr. Brain142 Lonny638 Kirlin939"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-21T15:54:33-04:00", "end": "2018-07-21T16:09:33-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999996397", "display": "Dr. Clara183 Esquivel546"}}], "period": {"start": "2018-07-21T15:54:33-04:00", "end": "2018-07-21T16:09:33-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "444814009", "display": "Viral sinusitis (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|1dd4f090-1389-3bf5-820c-0f216ea192b4", "display": "SALINA REGIONAL HEALTH CENTER"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|6f062a1b-1c9e-3481-9738-d8f1410314b3", "display": "SALINA REGIONAL HEALTH CENTER"}} +{"resourceType": "Encounter", "id": "e922a884-7039-a171-a65e-78051fe7afe6", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "e922a884-7039-a171-a65e-78051fe7afe6"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "410620009", "display": "Well child visit (procedure)"}], "text": "Well child visit (procedure)"}], "subject": {"reference": "Patient/8022fbbe-aaa4-056c-d0f5-ec074bf0656c", "display": "Santos184 Weston546 Hills818"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-13T12:17:51-04:00", "end": "2018-06-13T12:32:51-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999957597", "display": "Dr. Kathrine376 Reinger292"}}], "period": {"start": "2018-06-13T12:17:51-04:00", "end": "2018-06-13T12:32:51-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|8fa0819e-5656-3f33-9818-086a6aca17b3", "display": "COMMUNITY MEMORIAL HEALTHCARE INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|0737e7bb-6970-3d0c-a381-ae845d06c29e", "display": "COMMUNITY MEMORIAL HEALTHCARE INC"}} +{"resourceType": "Encounter", "id": "e5dabcb6-1d7a-7467-dbba-b864d0d5f5b0", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "e5dabcb6-1d7a-7467-dbba-b864d0d5f5b0"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "162673000", "display": "General examination of patient (procedure)"}], "text": "General examination of patient (procedure)"}], "subject": {"reference": "Patient/0b052286-9534-99a8-8d5e-06c2c04a7df7", "display": "Mrs. Annalee788 Larissa293 Schowalter414"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-28T16:12:31-04:00", "end": "2018-07-28T16:54:33-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999964692", "display": "Dr. Quintin944 Medhurst46"}}], "period": {"start": "2018-07-28T16:12:31-04:00", "end": "2018-07-28T16:54:33-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|222bbfd1-563e-3669-a7f3-f61b7e74d932", "display": "TURNER HOUSE CLINIC INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|d52fef66-d411-30b9-b184-85c26614f40f", "display": "TURNER HOUSE CLINIC INC"}} +{"resourceType": "Encounter", "id": "5c3450fb-12f0-08f3-6e4d-8a5e433e19a4", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "5c3450fb-12f0-08f3-6e4d-8a5e433e19a4"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "308335008", "display": "Patient encounter procedure"}], "text": "Patient encounter procedure"}], "subject": {"reference": "Patient/a46846ca-3f95-2cbb-3a9d-5eae150a0273", "display": "Mrs. Barbie211 Leeanna836 West559"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-21T12:09:09-04:00", "end": "2018-06-21T12:25:43-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999991992", "display": "Dr. Danial835 Ratke343"}}], "period": {"start": "2018-06-21T12:09:09-04:00", "end": "2018-06-21T12:25:43-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|96664450-301e-31f3-b909-9e0c4e4ea622", "display": "PRIME HEALTHCARE SERVICES - SAINT JOHN LEAVENWORTH LLC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|17b1e323-6812-34ad-ac7b-e77477a1fea6", "display": "PRIME HEALTHCARE SERVICES - SAINT JOHN LEAVENWORTH LLC"}} +{"resourceType": "Encounter", "id": "d2782687-6885-037c-957d-579fbd681d2a", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "d2782687-6885-037c-957d-579fbd681d2a"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "162673000", "display": "General examination of patient (procedure)"}], "text": "General examination of patient (procedure)"}], "subject": {"reference": "Patient/3cf7af45-2bee-aa9c-d524-40b487149d60", "display": "Mr. Grant908 Houston994 Parisian75"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-13T01:37:13-04:00", "end": "2018-06-13T02:37:07-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999961193", "display": "Dr. Eugenio846 Streich926"}}], "period": {"start": "2018-06-13T01:37:13-04:00", "end": "2018-06-13T02:37:07-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|0ae94e0c-afde-3ae8-bc47-9c21998b08a6", "display": "CLOUD COUNTY HEALTH CENTER INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|0fe7c8ee-71ff-3fa7-b848-83c7c9718648", "display": "CLOUD COUNTY HEALTH CENTER INC"}} +{"resourceType": "Encounter", "id": "2f55edb9-a906-0b40-e183-89b1d65d1aa1", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "2f55edb9-a906-0b40-e183-89b1d65d1aa1"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "371883000", "display": "Outpatient procedure"}], "text": "Outpatient procedure"}], "subject": {"reference": "Patient/0734762a-9db6-22fc-b595-c3e472bb2a9a", "display": "Ms. Marni913 Scarlett814 Kerluke267"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-21T00:54:06-04:00", "end": "2018-07-21T01:29:46-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999992594", "display": "Dr. Hyman89 Schmeler639"}}], "period": {"start": "2018-07-21T00:54:06-04:00", "end": "2018-07-21T01:29:46-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|04ede712-edc1-3d70-971f-a7a2b901649c", "display": "ASCENSION VIA CHRISTI HOSPITAL ST. TERESA, INC."}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|dafe8e2c-289d-3e2c-9563-ad5ec0e358b2", "display": "ASCENSION VIA CHRISTI HOSPITAL ST. TERESA, INC."}} +{"resourceType": "Encounter", "id": "aabb3ac3-c4a3-f613-9507-63280adb9209", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "aabb3ac3-c4a3-f613-9507-63280adb9209"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "410620009", "display": "Well child visit (procedure)"}], "text": "Well child visit (procedure)"}], "subject": {"reference": "Patient/2a0e1946-acf6-5a7e-9399-a9cbc4730199", "display": "Toby274 Emmerich580"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-31T10:05:03-04:00", "end": "2018-07-31T10:20:03-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999951798", "display": "Dr. Clair921 Flatley871"}}], "period": {"start": "2018-07-31T10:05:03-04:00", "end": "2018-07-31T10:20:03-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|b6b405b8-130e-301f-8bf5-ce2133d54257", "display": "PAWNEE VALLEY MEDICAL ASSOCIATES"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|e7c5fcc9-2d9a-3a4b-b390-5bcd1579cf39", "display": "PAWNEE VALLEY MEDICAL ASSOCIATES"}} +{"resourceType": "Encounter", "id": "029d1814-d7bf-0624-524d-7ccda5f320f6", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "029d1814-d7bf-0624-524d-7ccda5f320f6"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "371883000", "display": "Outpatient procedure"}], "text": "Outpatient procedure"}], "subject": {"reference": "Patient/e80dda2c-a260-dbf7-3167-bf0945f3a91d", "display": "Ms. Cameron381 Stacee229 Dicki44"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-03T13:57:52-04:00", "end": "2018-06-03T14:45:10-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999999391", "display": "Dr. Santo387 Schuppe920"}}], "period": {"start": "2018-06-03T13:57:52-04:00", "end": "2018-06-03T14:45:10-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|15e8e41f-f6f1-3b50-be5a-0e3c7399bd89", "display": "HCA WESLEY REHABILITATION HOSPITAL INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|650aa83a-c78d-3ed4-8747-94091acb93ff", "display": "HCA WESLEY REHABILITATION HOSPITAL INC"}} +{"resourceType": "Encounter", "id": "75b68644-535d-bdc1-4c31-aa9fe7e1822f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "75b68644-535d-bdc1-4c31-aa9fe7e1822f"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "EMER"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "50849002", "display": "Emergency room admission (procedure)"}], "text": "Emergency room admission (procedure)"}], "subject": {"reference": "Patient/82b8a670-4700-30e8-24a0-b83efa3c5e0a", "display": "Ms. Tatum703 Conn188"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-29T23:29:44-04:00", "end": "2018-06-30T11:29:44-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999909895", "display": "Dr. Sylvester827 Beahan375"}}], "period": {"start": "2018-06-29T23:29:44-04:00", "end": "2018-06-30T11:29:44-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "55680006", "display": "Drug overdose"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|35157ca5-af40-300b-bb2c-5925cd4816e0", "display": "AMEDISYS HOSPICE OF WICHITA"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|57f7e1eb-2858-35eb-be89-682645121a0a", "display": "AMEDISYS HOSPICE OF WICHITA"}} +{"resourceType": "Encounter", "id": "bca7cabc-b2fc-8a08-c69b-5bc0afa20d80", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "bca7cabc-b2fc-8a08-c69b-5bc0afa20d80"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185347001", "display": "Encounter for problem"}], "text": "Encounter for problem"}], "subject": {"reference": "Patient/3627adb8-f741-acf3-2dd6-10f3bcbe1077", "display": "Ms. Dalene805 Elizabet136 Hodkiewicz467"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-13T07:52:54-04:00", "end": "2018-07-13T09:01:22-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999988295", "display": "Dr. Lorette239 Hauck852"}}], "period": {"start": "2018-07-13T07:52:54-04:00", "end": "2018-07-13T09:01:22-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "271737000", "display": "Anemia (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|febd412f-a18d-3ef2-b0a3-2ba2642340f5", "display": "OSBORNE COUNTY MEMORIAL HOSPITAL"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|8dbbd4f7-a5cb-34b2-b3ed-84133fd3eb24", "display": "OSBORNE COUNTY MEMORIAL HOSPITAL"}} +{"resourceType": "Encounter", "id": "6565ef5c-30b9-8697-6ca6-2b77894d5437", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "6565ef5c-30b9-8697-6ca6-2b77894d5437"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "308335008", "display": "Patient encounter procedure"}], "text": "Patient encounter procedure"}], "subject": {"reference": "Patient/d3c0274f-f42b-8d2b-15f2-82331e723383", "display": "Ms. Anamaria46 Cruickshank494"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-19T13:10:59-04:00", "end": "2018-07-19T13:30:01-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999974592", "display": "Dr. Liane379 Kunze215"}}], "period": {"start": "2018-07-19T13:10:59-04:00", "end": "2018-07-19T13:30:01-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|d1565f3a-b34f-3965-960d-7fa4f3b7ec78", "display": "NEWMAN REGIONAL HEALTH"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|8a990ec7-9b5c-389f-9806-59d1113dfaae", "display": "NEWMAN REGIONAL HEALTH"}} +{"resourceType": "Encounter", "id": "02eb4e14-1a6f-d968-2c26-c0cf5023afe0", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "02eb4e14-1a6f-d968-2c26-c0cf5023afe0"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "162673000", "display": "General examination of patient (procedure)"}], "text": "General examination of patient (procedure)"}], "subject": {"reference": "Patient/c7ad408d-fcae-b54a-eb1d-26d48f7a5f84", "display": "Mrs. Tarsha65 Rashida558 Cole117"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-06-06T21:53:54-04:00", "end": "2018-06-06T22:08:54-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999947390", "display": "Dr. Theo630 Mante251"}}], "period": {"start": "2018-06-06T21:53:54-04:00", "end": "2018-06-06T22:08:54-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|83adf59a-7f57-32b7-8abc-b1c15466fba1", "display": "ADVENTHEALTH RANSOM MEMORIAL INC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|bb36f14b-85a6-392b-a0d5-38b320a2b019", "display": "ADVENTHEALTH RANSOM MEMORIAL INC"}} +{"resourceType": "Encounter", "id": "d735c414-9dd3-c9b1-285c-8da79a7fbbdf", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "d735c414-9dd3-c9b1-285c-8da79a7fbbdf"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "185347001", "display": "Encounter for problem (procedure)"}], "text": "Encounter for problem (procedure)"}], "subject": {"reference": "Patient/7cef0e6f-9aea-4079-dfc6-18a96454708e", "display": "Mrs. Gillian484 Sheron583 Rogahn59"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-29T11:06:48-04:00", "end": "2018-07-29T13:55:48-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999989491", "display": "Dr. Claudia969 Salda\u00f1a5"}}], "period": {"start": "2018-07-29T11:06:48-04:00", "end": "2018-07-29T13:55:48-04:00"}, "reasonCode": [{"coding": [{"system": "http://snomed.info/sct", "code": "431857002", "display": "Chronic kidney disease stage 4 (disorder)"}]}], "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|e65f88a3-4068-374c-87b4-0fe37076ba01", "display": "MAO LEAWOOD SURGERY CENTER LLC"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|a7648ddf-8655-35be-9eae-7347639edf96", "display": "MAO LEAWOOD SURGERY CENTER LLC"}} +{"resourceType": "Encounter", "id": "fd0754a4-e96d-cba7-b3c0-77697a09c86e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"]}, "identifier": [{"use": "official", "system": "https://github.com/synthetichealth/synthea", "value": "fd0754a4-e96d-cba7-b3c0-77697a09c86e"}], "status": "finished", "class": {"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "AMB"}, "type": [{"coding": [{"system": "http://snomed.info/sct", "code": "702927004", "display": "Urgent care clinic (environment)"}], "text": "Urgent care clinic (environment)"}], "subject": {"reference": "Patient/6385ddd7-2639-6505-3789-0521b8f66c8b", "display": "Mrs. Eda506 Nicholle822 Johnston597"}, "participant": [{"type": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", "code": "PPRF", "display": "primary performer"}], "text": "primary performer"}], "period": {"start": "2018-07-10T18:51:20-04:00", "end": "2018-07-10T19:06:20-04:00"}, "individual": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}}], "period": {"start": "2018-07-10T18:51:20-04:00", "end": "2018-07-10T19:06:20-04:00"}, "location": [{"location": {"reference": "Location?identifier=https://github.com/synthetichealth/synthea|f468f5f4-1d57-37a9-9f5d-03cb3ecb8448", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}}], "serviceProvider": {"reference": "Organization?identifier=https://github.com/synthetichealth/synthea|97ec0051-f3fb-3876-9f88-4c335d090345", "display": "MEDEXPRESS URGENT CARE KANSAS PA"}} diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_condition_month.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_condition_month.csv new file mode 100644 index 00000000..da027437 --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_condition_month.csv @@ -0,0 +1,3 @@ +cnt,cond_category_code,cond_month,cond_code_display +15,,, +15,encounter-diagnosis,, \ No newline at end of file diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_documentreference_month.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_documentreference_month.csv new file mode 100644 index 00000000..c50613f4 --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_documentreference_month.csv @@ -0,0 +1,19 @@ +cnt,author_month,enc_class_display,doc_type_display +50,,, +50,,,Evaluation + Plan note +50,,,Emergency department note +46,,ambulatory, +46,,ambulatory,Evaluation + Plan note +46,,ambulatory,Emergency department note +26,2018-07-01,, +26,2018-07-01,,Evaluation + Plan note +26,2018-07-01,,Emergency department note +24,2018-07-01,ambulatory, +24,2018-07-01,ambulatory,Evaluation + Plan note +24,2018-07-01,ambulatory,Emergency department note +24,2018-06-01,, +24,2018-06-01,,Evaluation + Plan note +24,2018-06-01,,Emergency department note +22,2018-06-01,ambulatory, +22,2018-06-01,ambulatory,Evaluation + Plan note +22,2018-06-01,ambulatory,Emergency department note \ No newline at end of file diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_encounter_month.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_encounter_month.csv new file mode 100644 index 00000000..6242c76f --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_encounter_month.csv @@ -0,0 +1,65 @@ +cnt,start_month,enc_class_display,age_at_visit,gender,race_display,ethnicity_display +50,,,,,, +47,,,,,white, +46,,ambulatory,,,, +45,,,,,,not hispanic or latino +43,,,,,white,not hispanic or latino +43,,ambulatory,,,white, +42,,ambulatory,,,,not hispanic or latino +40,,ambulatory,,,white,not hispanic or latino +29,,,,female,, +28,,,,female,white, +27,,,,female,,not hispanic or latino +27,,ambulatory,,female,, +26,,,,female,white,not hispanic or latino +26,,ambulatory,,female,white, +26,2018-07-01,,,,, +26,2018-07-01,,,,white, +25,,ambulatory,,female,,not hispanic or latino +24,,ambulatory,,female,white,not hispanic or latino +24,2018-07-01,,,,,not hispanic or latino +24,2018-07-01,,,,white,not hispanic or latino +24,2018-07-01,ambulatory,,,, +24,2018-07-01,ambulatory,,,white, +24,2018-06-01,,,,, +23,2018-07-01,ambulatory,,,,not hispanic or latino +23,2018-07-01,ambulatory,,,white,not hispanic or latino +22,2018-06-01,ambulatory,,,, +21,,,,male,, +21,2018-06-01,,,,,not hispanic or latino +21,2018-06-01,,,,white, +19,,,,male,white, +19,,ambulatory,,male,, +19,2018-06-01,,,,white,not hispanic or latino +19,2018-06-01,ambulatory,,,,not hispanic or latino +19,2018-06-01,ambulatory,,,white, +18,,,,male,,not hispanic or latino +17,,,,male,white,not hispanic or latino +17,,ambulatory,,male,,not hispanic or latino +17,,ambulatory,,male,white, +17,2018-06-01,ambulatory,,,white,not hispanic or latino +16,,ambulatory,,male,white,not hispanic or latino +15,2018-06-01,,,female,, +14,2018-07-01,,,female,, +14,2018-07-01,,,female,,not hispanic or latino +14,2018-07-01,,,female,white, +14,2018-07-01,,,female,white,not hispanic or latino +14,2018-06-01,,,female,white, +14,2018-06-01,ambulatory,,female,, +13,2018-07-01,ambulatory,,female,, +13,2018-07-01,ambulatory,,female,,not hispanic or latino +13,2018-07-01,ambulatory,,female,white, +13,2018-07-01,ambulatory,,female,white,not hispanic or latino +13,2018-06-01,,,female,,not hispanic or latino +13,2018-06-01,ambulatory,,female,white, +12,2018-07-01,,,male,, +12,2018-07-01,,,male,white, +12,2018-06-01,,,female,white,not hispanic or latino +12,2018-06-01,ambulatory,,female,,not hispanic or latino +11,2018-07-01,ambulatory,,male,, +11,2018-07-01,ambulatory,,male,white, +11,2018-06-01,ambulatory,,female,white,not hispanic or latino +10,2018-07-01,,,male,,not hispanic or latino +10,2018-07-01,,,male,white,not hispanic or latino +10,2018-07-01,ambulatory,,male,,not hispanic or latino +10,2018-07-01,ambulatory,,male,white,not hispanic or latino \ No newline at end of file diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_encounter_type.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_encounter_type.csv new file mode 100644 index 00000000..d5a1b912 --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_encounter_type.csv @@ -0,0 +1,9 @@ +cnt,enc_class_display,enc_type_display,enc_service_display,enc_priority_display +50,,,, +50,,,,None +50,,,None, +50,,,None,None +46,ambulatory,,, +46,ambulatory,,,None +46,ambulatory,,None, +46,ambulatory,,None,None \ No newline at end of file diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_encounter_type_month.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_encounter_type_month.csv new file mode 100644 index 00000000..62079c0d --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_encounter_type_month.csv @@ -0,0 +1,25 @@ +cnt,enc_class_display,enc_type_display,enc_service_display,enc_priority_display,start_month +50,,,,, +50,,,,None, +50,,,None,, +50,,,None,None, +46,ambulatory,,,, +46,ambulatory,,,None, +46,ambulatory,,None,, +46,ambulatory,,None,None, +26,,,,,2018-07-01 +26,,,,None,2018-07-01 +26,,,None,,2018-07-01 +26,,,None,None,2018-07-01 +24,,,,,2018-06-01 +24,,,,None,2018-06-01 +24,,,None,,2018-06-01 +24,,,None,None,2018-06-01 +24,ambulatory,,,,2018-07-01 +24,ambulatory,,,None,2018-07-01 +24,ambulatory,,None,,2018-07-01 +24,ambulatory,,None,None,2018-07-01 +22,ambulatory,,,,2018-06-01 +22,ambulatory,,,None,2018-06-01 +22,ambulatory,,None,,2018-06-01 +22,ambulatory,,None,None,2018-06-01 \ No newline at end of file diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_medicationrequest_month.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_medicationrequest_month.csv new file mode 100644 index 00000000..51a49fef --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_medicationrequest_month.csv @@ -0,0 +1,13 @@ +cnt,status,intent,authoredon_month,display +27,,,, +27,,order,, +26,stopped,,, +26,stopped,order,, +15,,,2018-07-01, +15,,order,2018-07-01, +15,stopped,,2018-07-01, +15,stopped,order,2018-07-01, +12,,,2018-06-01, +12,,order,2018-06-01, +11,stopped,,2018-06-01, +11,stopped,order,2018-06-01, \ No newline at end of file diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_observation_lab_month.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_observation_lab_month.csv new file mode 100644 index 00000000..c23acb61 --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_observation_lab_month.csv @@ -0,0 +1,15 @@ +cnt,lab_month,lab_code,lab_result_display,enc_class_code +20,,,, +20,,,,AMB +10,,,Urine smell ammoniacal (finding), +10,,,Urine smell ammoniacal (finding),AMB +10,,,Brown color (qualifier value), +10,,,Brown color (qualifier value),AMB +10,,5778-6,, +10,,5778-6,,AMB +10,,5778-6,Brown color (qualifier value), +10,,5778-6,Brown color (qualifier value),AMB +10,,34533-0,, +10,,34533-0,,AMB +10,,34533-0,Urine smell ammoniacal (finding), +10,,34533-0,Urine smell ammoniacal (finding),AMB \ No newline at end of file diff --git a/tests/test_data/duckdb_data/expected_export/core/core__count_patient.csv b/tests/test_data/duckdb_data/expected_export/core/core__count_patient.csv new file mode 100644 index 00000000..580ed24b --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__count_patient.csv @@ -0,0 +1,13 @@ +cnt,age,gender,race_display,ethnicity_display +50,,,, +47,,,white, +45,,,,not hispanic or latino +43,,,white,not hispanic or latino +29,,female,, +28,,female,white, +27,,female,,not hispanic or latino +26,,female,white,not hispanic or latino +21,,male,, +19,,male,white, +18,,male,,not hispanic or latino +17,,male,white,not hispanic or latino \ No newline at end of file diff --git a/tests/test_data/duckdb_data/expected_export/core/core__meta_date.csv b/tests/test_data/duckdb_data/expected_export/core/core__meta_date.csv new file mode 100644 index 00000000..b54a75ca --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__meta_date.csv @@ -0,0 +1,2 @@ +min_date,max_date +2018-06-01,2018-07-31 \ No newline at end of file diff --git a/tests/test_data/duckdb_data/expected_export/core/core__meta_version.csv b/tests/test_data/duckdb_data/expected_export/core/core__meta_version.csv new file mode 100644 index 00000000..49bfa56c --- /dev/null +++ b/tests/test_data/duckdb_data/expected_export/core/core__meta_version.csv @@ -0,0 +1,2 @@ +data_package_version +2 diff --git a/tests/test_data/duckdb_data/medicationrequest/meds.ndjson b/tests/test_data/duckdb_data/medicationrequest/meds.ndjson new file mode 100644 index 00000000..34ecee1c --- /dev/null +++ b/tests/test_data/duckdb_data/medicationrequest/meds.ndjson @@ -0,0 +1,39 @@ +{"resourceType": "MedicationRequest", "id": "1066a8ec-d791-0f90-18ed-46e9db5c230a", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "106892", "display": "insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]"}], "text": "insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]"}, "subject": {"reference": "Patient/9eaa056b-1efc-0cc8-70ff-62c8f704cc13"}, "encounter": {"reference": "Encounter/5c994000-aa78-2be5-e6cf-99f230d50c2f"}, "authoredOn": "2018-07-13T13:30:43-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999970798", "display": "Dr. Tamra871 Kerluke267"}, "reasonReference": [{"reference": "Condition/ffaab9ea-9839-a750-a1ed-9c3a472831e0", "display": "Prediabetes"}]} +{"resourceType": "MedicationRequest", "id": "3dd7628f-309e-48aa-f9c3-ef4ca336d7d0", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "308136", "display": "amLODIPine 2.5 MG Oral Tablet"}], "text": "amLODIPine 2.5 MG Oral Tablet"}, "subject": {"reference": "Patient/9eaa056b-1efc-0cc8-70ff-62c8f704cc13"}, "encounter": {"reference": "Encounter/5c994000-aa78-2be5-e6cf-99f230d50c2f"}, "authoredOn": "2018-07-13T13:30:43-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999970798", "display": "Dr. Tamra871 Kerluke267"}, "reasonReference": [{"reference": "Condition/4b38f042-4e91-335d-7488-15fa989c8ac4", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "3f33044e-7035-a01d-c5f9-030a7c027888", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "314076", "display": "lisinopril 10 MG Oral Tablet"}], "text": "lisinopril 10 MG Oral Tablet"}, "subject": {"reference": "Patient/24906e2c-e556-71dc-23d9-3e1d5fb08986"}, "encounter": {"reference": "Encounter/1154d05c-8727-9373-4224-25b9fdba9ab3"}, "authoredOn": "2018-06-14T19:21:26-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999949198", "display": "Dr. Florance664 Leannon79"}, "reasonReference": [{"reference": "Condition/de0b2487-6095-f38e-ce77-da1093f4e67c", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "48f27039-a404-e01f-1b25-0c747637a524", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "308136", "display": "amLODIPine 2.5 MG Oral Tablet"}], "text": "amLODIPine 2.5 MG Oral Tablet"}, "subject": {"reference": "Patient/24906e2c-e556-71dc-23d9-3e1d5fb08986"}, "encounter": {"reference": "Encounter/1154d05c-8727-9373-4224-25b9fdba9ab3"}, "authoredOn": "2018-06-14T19:21:26-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999949198", "display": "Dr. Florance664 Leannon79"}, "reasonReference": [{"reference": "Condition/de0b2487-6095-f38e-ce77-da1093f4e67c", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "18c16864-5c48-ce42-6adf-3dc4fadae32f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "308136", "display": "amLODIPine 2.5 MG Oral Tablet"}], "text": "amLODIPine 2.5 MG Oral Tablet"}, "subject": {"reference": "Patient/5ce2e599-fb6e-9b4d-3c2e-87310619b957"}, "encounter": {"reference": "Encounter/4b03a408-6694-88e3-0e63-3ee464ecd6cd"}, "authoredOn": "2018-07-10T20:08:47-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999997593", "display": "Dr. Felix524 Rogahn59"}, "reasonReference": [{"reference": "Condition/402d8e08-f5b6-65b7-1df4-628b3cba4fe3", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "4202a8b6-5f6d-ec43-6bf6-156a9bf842f3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "106892", "display": "insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]"}], "text": "insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]"}, "subject": {"reference": "Patient/5ce2e599-fb6e-9b4d-3c2e-87310619b957"}, "encounter": {"reference": "Encounter/4b03a408-6694-88e3-0e63-3ee464ecd6cd"}, "authoredOn": "2018-07-10T20:08:47-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999997593", "display": "Dr. Felix524 Rogahn59"}, "reasonReference": [{"reference": "Condition/31b5cb14-5d01-2cdf-84cf-86eb9d836676", "display": "Diabetes mellitus type 2 (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "a34e6e99-2cf9-6f0b-8f1f-1af5742e9a99", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "313782", "display": "Acetaminophen 325 MG Oral Tablet"}], "text": "Acetaminophen 325 MG Oral Tablet"}, "subject": {"reference": "Patient/7f941bcc-e7b2-99e1-585f-129d0ef1c13d"}, "encounter": {"reference": "Encounter/65f8fdca-a949-80a0-8072-094e9aaee474"}, "authoredOn": "2018-06-17T11:16:28-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999993691", "display": "Dr. Jacques50 Quigley282"}, "reasonReference": [{"reference": "Condition/5f7d91ec-026c-5bbe-4cbc-4f476d0b79be", "display": "Acute bronchitis (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "a7a6a67e-de2a-44b5-97f2-a18f642a686b", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "1000126", "display": "1 ML medroxyPROGESTERone acetate 150 MG/ML Injection"}], "text": "1 ML medroxyPROGESTERone acetate 150 MG/ML Injection"}, "subject": {"reference": "Patient/c20e5afd-30df-ac3d-6684-cc29438a9bc4"}, "encounter": {"reference": "Encounter/b864bcd8-14e0-8bec-b7cc-f8629d91470e"}, "authoredOn": "2018-06-28T02:22:49-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999997593", "display": "Dr. Felix524 Rogahn59"}} +{"resourceType": "MedicationRequest", "id": "e9d53e1d-3a31-4b3a-cb64-6382e74b5c09", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "108515", "display": "1 ML tacrolimus 5 MG/ML Injection"}], "text": "1 ML tacrolimus 5 MG/ML Injection"}, "subject": {"reference": "Patient/9c8d8539-0b1e-73e2-b64f-83f1ea601fa4"}, "encounter": {"reference": "Encounter/f2752dd7-1bf1-739d-dd8c-40122d0b63bc"}, "authoredOn": "2018-06-01T20:27:06-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999987099", "display": "Dr. Trinidad33 King743"}, "reasonReference": [{"reference": "Condition/b55c05a8-0f2b-7796-a3bc-5291c5ceb299", "display": "History of renal transplant (situation)"}]} +{"resourceType": "MedicationRequest", "id": "1c97f94f-68b3-bc69-6930-66e7b1fbf216", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "310798", "display": "Hydrochlorothiazide 25 MG Oral Tablet"}], "text": "Hydrochlorothiazide 25 MG Oral Tablet"}, "subject": {"reference": "Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4"}, "encounter": {"reference": "Encounter/299b6495-3fe7-8db3-c494-6e1ce8b7986d"}, "authoredOn": "2018-06-02T11:55:39-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999994699", "display": "Dr. Delcie812 Casper496"}, "reasonReference": [{"reference": "Condition/6394e535-cdde-1d7c-9955-513c1c9ce162", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "532e7133-9796-6686-991e-647e34dfef5c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "308136", "display": "amLODIPine 2.5 MG Oral Tablet"}], "text": "amLODIPine 2.5 MG Oral Tablet"}, "subject": {"reference": "Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4"}, "encounter": {"reference": "Encounter/299b6495-3fe7-8db3-c494-6e1ce8b7986d"}, "authoredOn": "2018-06-02T11:55:39-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999994699", "display": "Dr. Delcie812 Casper496"}, "reasonReference": [{"reference": "Condition/6394e535-cdde-1d7c-9955-513c1c9ce162", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "eeafadf7-232b-3d11-4023-93695bfefd1e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "205923", "display": "1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]"}], "text": "1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]"}, "subject": {"reference": "Patient/26a3984f-b2a8-e67f-7abc-ff147a0e6e35"}, "encounter": {"reference": "Encounter/79d8f213-7847-646b-8a66-5da208cc1c27"}, "authoredOn": "2018-07-14T18:04:20-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999970897", "display": "Dr. Thanh759 Cartwright189"}, "reasonReference": [{"reference": "Condition/a498f1e6-d258-4ddb-c3b1-14e60f699198", "display": "Anemia (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "279d5da6-d819-71fe-9238-6bbf2e9281f1", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "1664463", "display": "24 HR tacrolimus 1 MG Extended Release Oral Tablet"}], "text": "24 HR tacrolimus 1 MG Extended Release Oral Tablet"}, "subject": {"reference": "Patient/e455ca3f-fc16-6ffc-297a-adc27e2db183"}, "encounter": {"reference": "Encounter/98d4bd14-d78e-debb-e7dc-2df7786aedf3"}, "authoredOn": "2018-07-09T09:23:51-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995092", "display": "Dr. Cristi782 Leannon79"}, "reasonReference": [{"reference": "Condition/11d30fd3-23c2-e4af-937e-c6fa1d463759", "display": "History of renal transplant (situation)"}], "dosageInstruction": [{"sequence": 1, "text": "Take as needed.", "asNeededBoolean": true}]} +{"resourceType": "MedicationRequest", "id": "9034a4e4-9803-268c-d3be-c4b386f654ed", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "855332", "display": "Warfarin Sodium 5 MG Oral Tablet"}], "text": "Warfarin Sodium 5 MG Oral Tablet"}, "subject": {"reference": "Patient/e455ca3f-fc16-6ffc-297a-adc27e2db183"}, "encounter": {"reference": "Encounter/98d4bd14-d78e-debb-e7dc-2df7786aedf3"}, "authoredOn": "2018-07-09T09:23:51-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995092", "display": "Dr. Cristi782 Leannon79"}, "reasonReference": [{"reference": "Condition/7eec54e7-5a0d-3963-2646-c7fdd7797c68", "display": "Atrial fibrillation (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "96ab6ece-175b-2811-35c4-30b8119cdcff", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "860975", "display": "24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet"}], "text": "24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet"}, "subject": {"reference": "Patient/ac91b90d-97e4-4fc5-41cd-036bac49e6e8"}, "encounter": {"reference": "Encounter/dc5ed645-3979-e765-3e03-6ba2173027c3"}, "authoredOn": "2018-07-07T02:21:46-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}, "reasonReference": [{"reference": "Condition/8cddaf72-e0ff-1086-e57d-77812e157d1f", "display": "Diabetes mellitus type 2 (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "9105515b-33e2-82ad-72e3-64acc0d8012c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "310798", "display": "Hydrochlorothiazide 25 MG Oral Tablet"}], "text": "Hydrochlorothiazide 25 MG Oral Tablet"}, "subject": {"reference": "Patient/c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0"}, "encounter": {"reference": "Encounter/8ff1dc01-5a28-b2d8-3b42-4b7a7d539970"}, "authoredOn": "2018-07-15T12:48:03-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999989491", "display": "Dr. Claudia969 Salda\u00f1a5"}, "reasonReference": [{"reference": "Condition/111c5804-d55e-eb1d-d57f-398ce6cafd6f", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "ed67af7e-e0cc-ef33-4ad2-59a9bd1d1210", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "314076", "display": "lisinopril 10 MG Oral Tablet"}], "text": "lisinopril 10 MG Oral Tablet"}, "subject": {"reference": "Patient/c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0"}, "encounter": {"reference": "Encounter/8ff1dc01-5a28-b2d8-3b42-4b7a7d539970"}, "authoredOn": "2018-07-15T12:48:03-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999989491", "display": "Dr. Claudia969 Salda\u00f1a5"}, "reasonReference": [{"reference": "Condition/111c5804-d55e-eb1d-d57f-398ce6cafd6f", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "74eaab96-3b9b-beff-74c8-617533d0c3bb", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "314076", "display": "lisinopril 10 MG Oral Tablet"}], "text": "lisinopril 10 MG Oral Tablet"}, "subject": {"reference": "Patient/267fc42d-cd9e-8527-1f9e-887fe7776147"}, "encounter": {"reference": "Encounter/4c4d0730-201f-5b75-c657-8d0de09cc28f"}, "authoredOn": "2018-06-14T17:14:11-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}, "reasonReference": [{"reference": "Condition/55c9f53e-dba0-2b78-0d7b-c7af48147049", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "8ec9f68f-f1ae-83ef-e77a-5b680a3a85a6", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "310798", "display": "Hydrochlorothiazide 25 MG Oral Tablet"}], "text": "Hydrochlorothiazide 25 MG Oral Tablet"}, "subject": {"reference": "Patient/267fc42d-cd9e-8527-1f9e-887fe7776147"}, "encounter": {"reference": "Encounter/4c4d0730-201f-5b75-c657-8d0de09cc28f"}, "authoredOn": "2018-06-14T17:14:11-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}, "reasonReference": [{"reference": "Condition/55c9f53e-dba0-2b78-0d7b-c7af48147049", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "c3f0e356-0f60-de8e-4512-2bdee1c8c2ff", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "630208", "display": "albuterol 0.83 MG/ML Inhalation Solution"}], "text": "albuterol 0.83 MG/ML Inhalation Solution"}, "subject": {"reference": "Patient/6a883108-7b87-120b-d163-d369336e04e5"}, "encounter": {"reference": "Encounter/2b1ee164-6c87-420d-a9e2-6c235ebeef71"}, "authoredOn": "2018-06-07T23:14:12-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}, "reasonReference": [{"reference": "Condition/25463b8e-6497-b5ab-f10e-24560089faf1", "display": "Childhood asthma"}], "dosageInstruction": [{"sequence": 1, "text": "Take as needed.", "asNeededBoolean": true}]} +{"resourceType": "MedicationRequest", "id": "d2e654cd-2b6b-fab2-02fc-c17034e9b9b4", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "349094", "display": "budesonide 0.125 MG/ML Inhalation Suspension"}], "text": "budesonide 0.125 MG/ML Inhalation Suspension"}, "subject": {"reference": "Patient/6a883108-7b87-120b-d163-d369336e04e5"}, "encounter": {"reference": "Encounter/2b1ee164-6c87-420d-a9e2-6c235ebeef71"}, "authoredOn": "2018-06-07T23:14:12-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}, "reasonReference": [{"reference": "Condition/25463b8e-6497-b5ab-f10e-24560089faf1", "display": "Childhood asthma"}], "dosageInstruction": [{"sequence": 1, "text": "Take as needed.", "asNeededBoolean": true}]} +{"resourceType": "MedicationRequest", "id": "c0735493-29ed-9090-197d-b632d98627b8", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "748879", "display": "Levora 0.15/30 28 Day Pack"}], "text": "Levora 0.15/30 28 Day Pack"}, "subject": {"reference": "Patient/7bf52d54-0d2a-265a-15aa-eeed7aaf4af6"}, "encounter": {"reference": "Encounter/ba84689e-2f9f-7cea-af1f-d69ffdd3a3eb"}, "authoredOn": "2018-06-15T03:05:37-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999981993", "display": "Dr. Kirk871 Erdman779"}} +{"resourceType": "MedicationRequest", "id": "f404f354-423d-be8a-24d6-0773a84e3dd3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "205923", "display": "1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]"}], "text": "1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]"}, "subject": {"reference": "Patient/50f8b42e-17a6-e932-8546-da94004c597c"}, "encounter": {"reference": "Encounter/37604257-be1a-120f-81ee-336f81603f92"}, "authoredOn": "2018-07-16T15:22:16-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999999193", "display": "Dr. Dusty207 Franecki195"}, "reasonReference": [{"reference": "Condition/6ef82382-e70d-a037-a67f-9139d23dc3e9", "display": "Anemia (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "773dcdd0-f950-143a-5a6c-971fd5124f22", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "310965", "display": "Ibuprofen 200 MG Oral Tablet"}], "text": "Ibuprofen 200 MG Oral Tablet"}, "subject": {"reference": "Patient/ad3ed58a-5645-af0a-eeca-ab543123a8aa"}, "encounter": {"reference": "Encounter/03e34b19-2889-b828-792d-2a83400c55be"}, "authoredOn": "2018-07-19T05:32:26-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999903799", "display": "Dr. Jen355 Hintz995"}, "dosageInstruction": [{"sequence": 1, "text": "Take as needed.", "asNeededBoolean": true}]} +{"resourceType": "MedicationRequest", "id": "2c348743-863c-8b07-b575-668e7becb5c1", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "205923", "display": "1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]"}], "text": "1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]"}, "subject": {"reference": "Patient/a5bc08ea-9462-c4f5-1bd2-ff342598ac99"}, "encounter": {"reference": "Encounter/f964be66-3fcd-95c8-0021-71c7d24c91b7"}, "authoredOn": "2018-06-05T07:24:14-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995191", "display": "Dr. Chang901 Kutch271"}, "reasonReference": [{"reference": "Condition/1fa4fbcc-9d8d-03c5-d846-5b7f8792132b", "display": "Anemia (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "16fdc45d-7df7-f483-bacc-9fa0926048c8", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "748879", "display": "Levora 0.15/30 28 Day Pack"}], "text": "Levora 0.15/30 28 Day Pack"}, "subject": {"reference": "Patient/149de67a-2809-59a8-bfa2-36df509021dc"}, "encounter": {"reference": "Encounter/beb26500-4ccd-ce0a-44f6-74f44be5fafe"}, "authoredOn": "2018-06-07T08:38:26-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999973990", "display": "Dr. Lan153 Kemmer137"}} +{"resourceType": "MedicationRequest", "id": "9f49f781-e443-633b-b0d1-ca392903337b", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "314076", "display": "lisinopril 10 MG Oral Tablet"}], "text": "lisinopril 10 MG Oral Tablet"}, "subject": {"reference": "Patient/17fde357-dcc9-af8b-a8d3-4bd213afeb22"}, "encounter": {"reference": "Encounter/32d0ae2d-1be8-9e90-a4da-4c222abd88a9"}, "authoredOn": "2018-07-02T09:36:07-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999993196", "display": "Dr. Nicholas495 Greenfelder433"}, "reasonReference": [{"reference": "Condition/51d1c4c6-0d81-4037-06a7-b2808cbe4bca", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "db7d84ad-cd33-c788-d036-241388382ada", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "106892", "display": "insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]"}], "text": "insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]"}, "subject": {"reference": "Patient/17fde357-dcc9-af8b-a8d3-4bd213afeb22"}, "encounter": {"reference": "Encounter/32d0ae2d-1be8-9e90-a4da-4c222abd88a9"}, "authoredOn": "2018-07-02T09:36:07-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999993196", "display": "Dr. Nicholas495 Greenfelder433"}, "reasonReference": [{"reference": "Condition/c22c4752-cd7a-a335-93aa-6870f638eeda", "display": "Prediabetes"}]} +{"resourceType": "MedicationRequest", "id": "652f644f-22f8-17f9-7fd4-e5955c0913d1", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "749762", "display": "Seasonique 91 Day Pack"}], "text": "Seasonique 91 Day Pack"}, "subject": {"reference": "Patient/51032f44-d514-26e9-3e85-e956561c076e"}, "encounter": {"reference": "Encounter/d73ed087-e0ae-78e0-7a05-1bac1060c476"}, "authoredOn": "2018-07-10T06:35:55-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999995092", "display": "Dr. Cristi782 Leannon79"}} +{"resourceType": "MedicationRequest", "id": "5649f6c0-5119-1447-0f1f-5177ba1732ff", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "860975", "display": "24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet"}], "text": "24 HR Metformin hydrochloride 500 MG Extended Release Oral Tablet"}, "subject": {"reference": "Patient/a5b171a7-9b28-20e7-86a7-936ecbf55f36"}, "encounter": {"reference": "Encounter/c4605953-3103-ede6-e0c0-e0588e6f019e"}, "authoredOn": "2018-07-27T10:08:29-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999952192", "display": "Dr. Joel444 Bins636"}, "reasonReference": [{"reference": "Condition/208626ed-97b2-b829-4452-6900ec391647", "display": "Diabetes mellitus type 2 (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "fe8af482-845f-2876-5f93-adfad40a6513", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "313820", "display": "Acetaminophen 160 MG Chewable Tablet"}], "text": "Acetaminophen 160 MG Chewable Tablet"}, "subject": {"reference": "Patient/dffa62dc-8ec2-1cd6-ee75-f9156a5283fe"}, "encounter": {"reference": "Encounter/11381dc6-0e06-da55-0735-d1e7bbf8bb35"}, "authoredOn": "2018-07-15T04:49:59-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999887190", "display": "Dr. Kathie378 Fisher429"}, "dosageInstruction": [{"sequence": 1, "text": "Take as needed.", "asNeededBoolean": true}]} +{"resourceType": "MedicationRequest", "id": "0dbe45aa-d9b4-e29a-d9e3-2604276ec057", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "245134", "display": "72 HR Fentanyl 0.025 MG/HR Transdermal System"}], "text": "72 HR Fentanyl 0.025 MG/HR Transdermal System"}, "subject": {"reference": "Patient/0b052286-9534-99a8-8d5e-06c2c04a7df7"}, "encounter": {"reference": "Encounter/e5dabcb6-1d7a-7467-dbba-b864d0d5f5b0"}, "authoredOn": "2018-07-28T16:12:31-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999964692", "display": "Dr. Quintin944 Medhurst46"}, "dosageInstruction": [{"sequence": 1, "text": "Every seventy two hours (qualifier value)", "additionalInstruction": [{"coding": [{"system": "http://snomed.info/sct", "code": "396143001", "display": "Every seventy two hours (qualifier value)"}], "text": "Every seventy two hours (qualifier value)"}], "timing": {"repeat": {"frequency": 1, "period": 3.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "73725e09-3f65-5786-03ea-4030f420773c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "1860491", "display": "12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule"}], "text": "12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule"}, "subject": {"reference": "Patient/0b052286-9534-99a8-8d5e-06c2c04a7df7"}, "encounter": {"reference": "Encounter/e5dabcb6-1d7a-7467-dbba-b864d0d5f5b0"}, "authoredOn": "2018-07-28T16:12:31-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999964692", "display": "Dr. Quintin944 Medhurst46"}, "dosageInstruction": [{"sequence": 1, "text": "Every twelve hours as required (qualifier value)", "additionalInstruction": [{"coding": [{"system": "http://snomed.info/sct", "code": "1831000175103", "display": "Every twelve hours as required (qualifier value)"}], "text": "Every twelve hours as required (qualifier value)"}], "timing": {"repeat": {"frequency": 2, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "71cb13a5-23b9-bb80-26fe-d05f09ad8ee9", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "314076", "display": "lisinopril 10 MG Oral Tablet"}], "text": "lisinopril 10 MG Oral Tablet"}, "subject": {"reference": "Patient/3cf7af45-2bee-aa9c-d524-40b487149d60"}, "encounter": {"reference": "Encounter/d2782687-6885-037c-957d-579fbd681d2a"}, "authoredOn": "2018-06-13T01:37:13-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999961193", "display": "Dr. Eugenio846 Streich926"}, "reasonReference": [{"reference": "Condition/f2c8229f-2f22-9428-b3a2-13b291b4863a", "display": "Essential hypertension (disorder)"}], "dosageInstruction": [{"sequence": 1, "timing": {"repeat": {"frequency": 1, "period": 1.0, "periodUnit": "d"}}, "asNeededBoolean": false, "doseAndRate": [{"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", "code": "ordered", "display": "Ordered"}]}, "doseQuantity": {"value": 1.0}}]}]} +{"resourceType": "MedicationRequest", "id": "1775f635-147b-a136-876c-18d865c1cc7d", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "active", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "866412", "display": "24 HR metoprolol succinate 100 MG Extended Release Oral Tablet"}], "text": "24 HR metoprolol succinate 100 MG Extended Release Oral Tablet"}, "subject": {"reference": "Patient/c7ad408d-fcae-b54a-eb1d-26d48f7a5f84"}, "encounter": {"reference": "Encounter/02eb4e14-1a6f-d968-2c26-c0cf5023afe0"}, "authoredOn": "2018-06-06T21:53:54-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999947390", "display": "Dr. Theo630 Mante251"}} +{"resourceType": "MedicationRequest", "id": "52269ea0-95b6-bd57-20ce-5461ea4b151c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "active", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "705129", "display": "Nitroglycerin 0.4 MG/ACTUAT Mucosal Spray"}], "text": "Nitroglycerin 0.4 MG/ACTUAT Mucosal Spray"}, "subject": {"reference": "Patient/c7ad408d-fcae-b54a-eb1d-26d48f7a5f84"}, "encounter": {"reference": "Encounter/02eb4e14-1a6f-d968-2c26-c0cf5023afe0"}, "authoredOn": "2018-06-06T21:53:54-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999947390", "display": "Dr. Theo630 Mante251"}} +{"resourceType": "MedicationRequest", "id": "c1255c32-5173-bf6e-4a31-8d30806e253e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "205923", "display": "1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]"}], "text": "1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]"}, "subject": {"reference": "Patient/7cef0e6f-9aea-4079-dfc6-18a96454708e"}, "encounter": {"reference": "Encounter/d735c414-9dd3-c9b1-285c-8da79a7fbbdf"}, "authoredOn": "2018-07-29T13:55:48-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999989491", "display": "Dr. Claudia969 Salda\u00f1a5"}, "reasonReference": [{"reference": "Condition/38efa163-0ae4-d4b6-875f-15e3646a1a65", "display": "Anemia (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "531ebeba-3c23-bb67-3fc9-cef05f726934", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "106892", "display": "insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]"}], "text": "insulin isophane, human 70 UNT/ML / insulin, regular, human 30 UNT/ML Injectable Suspension [Humulin]"}, "subject": {"reference": "Patient/6385ddd7-2639-6505-3789-0521b8f66c8b"}, "encounter": {"reference": "Encounter/fd0754a4-e96d-cba7-b3c0-77697a09c86e"}, "authoredOn": "2018-07-10T18:51:20-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}, "reasonReference": [{"reference": "Condition/604d8931-9f82-e2f8-c9a6-a32686b36bc7", "display": "Diabetes mellitus type 2 (disorder)"}]} +{"resourceType": "MedicationRequest", "id": "932d6470-6774-a36b-fb63-c6577b3d91ae", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"]}, "status": "stopped", "intent": "order", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category", "code": "community", "display": "Community"}], "text": "Community"}], "medicationCodeableConcept": {"coding": [{"system": "http://www.nlm.nih.gov/research/umls/rxnorm", "code": "2563431", "display": "aspirin 81 MG Oral Capsule"}], "text": "aspirin 81 MG Oral Capsule"}, "subject": {"reference": "Patient/6385ddd7-2639-6505-3789-0521b8f66c8b"}, "encounter": {"reference": "Encounter/fd0754a4-e96d-cba7-b3c0-77697a09c86e"}, "authoredOn": "2018-07-10T18:51:20-04:00", "requester": {"reference": "Practitioner?identifier=http://hl7.org/fhir/sid/us-npi|9999923995", "display": "Dr. Johnson679 Schmidt332"}, "dosageInstruction": [{"sequence": 1, "text": "Take as needed.", "asNeededBoolean": true}]} diff --git a/tests/test_data/duckdb_data/observation/obs.ndjson b/tests/test_data/duckdb_data/observation/obs.ndjson new file mode 100644 index 00000000..71511fc7 --- /dev/null +++ b/tests/test_data/duckdb_data/observation/obs.ndjson @@ -0,0 +1,20 @@ +{"resourceType": "Observation", "id": "29a5c64c-9973-93d2-24a2-b2bcea3bdf4b", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/9eaa056b-1efc-0cc8-70ff-62c8f704cc13"}, "encounter": {"reference": "Encounter/5c994000-aa78-2be5-e6cf-99f230d50c2f"}, "effectiveDateTime": "2018-07-13T13:30:43-04:00", "issued": "2018-07-13T13:30:43.931-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "e47346a6-9fb7-bc9b-b8bb-006bfeebbd02", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/9eaa056b-1efc-0cc8-70ff-62c8f704cc13"}, "encounter": {"reference": "Encounter/5c994000-aa78-2be5-e6cf-99f230d50c2f"}, "effectiveDateTime": "2018-07-13T13:30:43-04:00", "issued": "2018-07-13T13:30:43.931-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} +{"resourceType": "Observation", "id": "0935feb5-36bc-6a6c-7969-841bacbabdfe", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/5ce2e599-fb6e-9b4d-3c2e-87310619b957"}, "encounter": {"reference": "Encounter/4b03a408-6694-88e3-0e63-3ee464ecd6cd"}, "effectiveDateTime": "2018-07-10T20:08:47-04:00", "issued": "2018-07-10T20:08:47.894-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} +{"resourceType": "Observation", "id": "efe12fc4-932e-90ab-05d5-05169bd815b1", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/5ce2e599-fb6e-9b4d-3c2e-87310619b957"}, "encounter": {"reference": "Encounter/4b03a408-6694-88e3-0e63-3ee464ecd6cd"}, "effectiveDateTime": "2018-07-10T20:08:47-04:00", "issued": "2018-07-10T20:08:47.894-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "8930d451-d73c-5360-4b65-a8f9fdb43eae", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4"}, "encounter": {"reference": "Encounter/299b6495-3fe7-8db3-c494-6e1ce8b7986d"}, "effectiveDateTime": "2018-06-02T11:55:39-04:00", "issued": "2018-06-02T11:55:39.231-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} +{"resourceType": "Observation", "id": "05e6184c-f3ef-017b-ce21-599d375020b3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/8877ef1f-7cd7-3242-d7f0-73cf3f7165f4"}, "encounter": {"reference": "Encounter/299b6495-3fe7-8db3-c494-6e1ce8b7986d"}, "effectiveDateTime": "2018-06-02T11:55:39-04:00", "issued": "2018-06-02T11:55:39.231-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "916b97ca-fb5f-71ce-0cff-70383a1aa668", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/e455ca3f-fc16-6ffc-297a-adc27e2db183"}, "encounter": {"reference": "Encounter/98d4bd14-d78e-debb-e7dc-2df7786aedf3"}, "effectiveDateTime": "2018-07-09T09:23:51-04:00", "issued": "2018-07-09T09:23:51.812-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "bdcea012-7a9a-193f-eb45-80dbceca6095", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/e455ca3f-fc16-6ffc-297a-adc27e2db183"}, "encounter": {"reference": "Encounter/98d4bd14-d78e-debb-e7dc-2df7786aedf3"}, "effectiveDateTime": "2018-07-09T09:23:51-04:00", "issued": "2018-07-09T09:23:51.812-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} +{"resourceType": "Observation", "id": "93b68c85-7046-025d-19a1-bffd42469601", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/ac91b90d-97e4-4fc5-41cd-036bac49e6e8"}, "encounter": {"reference": "Encounter/dc5ed645-3979-e765-3e03-6ba2173027c3"}, "effectiveDateTime": "2018-07-07T02:21:46-04:00", "issued": "2018-07-07T02:21:46.792-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "bc4dafcf-05ad-9b01-049b-f9c75bd8d53f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/ac91b90d-97e4-4fc5-41cd-036bac49e6e8"}, "encounter": {"reference": "Encounter/dc5ed645-3979-e765-3e03-6ba2173027c3"}, "effectiveDateTime": "2018-07-07T02:21:46-04:00", "issued": "2018-07-07T02:21:46.792-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} +{"resourceType": "Observation", "id": "c62885ce-5f40-32a4-d8f6-ae945824b172", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0"}, "encounter": {"reference": "Encounter/8ff1dc01-5a28-b2d8-3b42-4b7a7d539970"}, "effectiveDateTime": "2018-07-15T12:48:03-04:00", "issued": "2018-07-15T12:48:03.499-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "701e9048-be5f-5b42-b582-97d1ff465438", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0"}, "encounter": {"reference": "Encounter/8ff1dc01-5a28-b2d8-3b42-4b7a7d539970"}, "effectiveDateTime": "2018-07-15T12:48:03-04:00", "issued": "2018-07-15T12:48:03.499-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} +{"resourceType": "Observation", "id": "5ba3f97b-8ecc-0b87-bee1-abeffa7580b7", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/267fc42d-cd9e-8527-1f9e-887fe7776147"}, "encounter": {"reference": "Encounter/4c4d0730-201f-5b75-c657-8d0de09cc28f"}, "effectiveDateTime": "2018-06-14T17:14:11-04:00", "issued": "2018-06-14T17:14:11.600-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} +{"resourceType": "Observation", "id": "34347a5f-a90a-f723-8121-919ca5364b7c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/267fc42d-cd9e-8527-1f9e-887fe7776147"}, "encounter": {"reference": "Encounter/4c4d0730-201f-5b75-c657-8d0de09cc28f"}, "effectiveDateTime": "2018-06-14T17:14:11-04:00", "issued": "2018-06-14T17:14:11.600-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "0d35c92c-8982-9737-2bae-79789514fde8", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/17fde357-dcc9-af8b-a8d3-4bd213afeb22"}, "encounter": {"reference": "Encounter/32d0ae2d-1be8-9e90-a4da-4c222abd88a9"}, "effectiveDateTime": "2018-07-02T09:36:07-04:00", "issued": "2018-07-02T09:36:07.133-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "d9871961-3f7a-7cf7-0ced-460368db48e0", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/17fde357-dcc9-af8b-a8d3-4bd213afeb22"}, "encounter": {"reference": "Encounter/32d0ae2d-1be8-9e90-a4da-4c222abd88a9"}, "effectiveDateTime": "2018-07-02T09:36:07-04:00", "issued": "2018-07-02T09:36:07.133-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} +{"resourceType": "Observation", "id": "8cc39753-79b9-2be9-77a7-157ca24ad5cf", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/3cf7af45-2bee-aa9c-d524-40b487149d60"}, "encounter": {"reference": "Encounter/d2782687-6885-037c-957d-579fbd681d2a"}, "effectiveDateTime": "2018-06-13T01:37:13-04:00", "issued": "2018-06-13T01:37:13.576-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "84d65045-3a6e-5968-c35b-001d125b26d2", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/3cf7af45-2bee-aa9c-d524-40b487149d60"}, "encounter": {"reference": "Encounter/d2782687-6885-037c-957d-579fbd681d2a"}, "effectiveDateTime": "2018-06-13T01:37:13-04:00", "issued": "2018-06-13T01:37:13.576-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} +{"resourceType": "Observation", "id": "c802cfaf-6b9e-36fb-c7b1-1836cbc4f653", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "34533-0", "display": "Odor of Urine"}], "text": "Odor of Urine"}, "subject": {"reference": "Patient/6385ddd7-2639-6505-3789-0521b8f66c8b"}, "encounter": {"reference": "Encounter/fd0754a4-e96d-cba7-b3c0-77697a09c86e"}, "effectiveDateTime": "2018-07-10T18:51:20-04:00", "issued": "2018-07-10T18:51:20.673-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "167248002", "display": "Urine smell ammoniacal (finding)"}], "text": "Urine smell ammoniacal (finding)"}} +{"resourceType": "Observation", "id": "b1467052-96e1-a697-fd94-feffb6e1453b", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"]}, "status": "final", "category": [{"coding": [{"system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory", "display": "Laboratory"}]}], "code": {"coding": [{"system": "http://loinc.org", "code": "5778-6", "display": "Color of Urine"}], "text": "Color of Urine"}, "subject": {"reference": "Patient/6385ddd7-2639-6505-3789-0521b8f66c8b"}, "encounter": {"reference": "Encounter/fd0754a4-e96d-cba7-b3c0-77697a09c86e"}, "effectiveDateTime": "2018-07-10T18:51:20-04:00", "issued": "2018-07-10T18:51:20.673-04:00", "valueCodeableConcept": {"coding": [{"system": "http://snomed.info/sct", "code": "371254008", "display": "Brown color (qualifier value)"}], "text": "Brown color (qualifier value)"}} diff --git a/tests/test_data/duckdb_data/patient/patient-remainder.ndjson b/tests/test_data/duckdb_data/patient/patient-remainder.ndjson new file mode 100644 index 00000000..b2aa524a --- /dev/null +++ b/tests/test_data/duckdb_data/patient/patient-remainder.ndjson @@ -0,0 +1,49 @@ +{"resourceType": "Patient", "id": "0b052286-9534-99a8-8d5e-06c2c04a7df7", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 5366241386486946330 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Jenna662 Mosciski958"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Overland Park", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 5.165714671030385}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 47.834285328969614}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "0b052286-9534-99a8-8d5e-06c2c04a7df7"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "0b052286-9534-99a8-8d5e-06c2c04a7df7"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-34-5923"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99990255"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X2745259X"}], "name": [{"use": "official", "family": "Schowalter414", "given": ["Annalee788", "Larissa293"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Rempel203", "given": ["Annalee788", "Larissa293"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-506-1593", "use": "home"}], "gender": "female", "birthDate": "1969-02-22", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.05914899477343}, {"url": "longitude", "valueDecimal": -94.64417556223023}]}], "line": ["258 Paucek Fort Unit 36"], "city": "Prairie", "state": "KS", "postalCode": "66206", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "149de67a-2809-59a8-bfa2-36df509021dc", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 8969874113609396923 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Meredith572 Goyette777"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Hesston", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.03338893365838899}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 17.96661106634161}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "149de67a-2809-59a8-bfa2-36df509021dc"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "149de67a-2809-59a8-bfa2-36df509021dc"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-88-9961"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99963719"}], "name": [{"use": "official", "family": "Bednar518", "given": ["Cuc113", "Onita767"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-455-2373", "use": "home"}], "gender": "female", "birthDate": "2004-06-07", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.879233592929076}, {"url": "longitude", "valueDecimal": -95.7652805523943}]}], "line": ["896 Strosin Meadow Unit 92"], "city": "Yates Center", "state": "KS", "postalCode": "66783", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "16be855b-ece2-8b96-1ef9-a4d93adf3289", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -6378710399629999358 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Letisha598 Denesik803"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Lawrence", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 23.044052820730716}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 44.95594717926929}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "16be855b-ece2-8b96-1ef9-a4d93adf3289"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "16be855b-ece2-8b96-1ef9-a4d93adf3289"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-70-9897"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99911024"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X8954228X"}], "name": [{"use": "official", "family": "Bauch723", "given": ["Herschel574", "Kasey569"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-349-3389", "use": "home"}], "gender": "male", "birthDate": "1949-09-03", "deceasedDateTime": "2018-07-09T01:30:15-04:00", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.93128961115959}, {"url": "longitude", "valueDecimal": -95.30331101883995}]}], "line": ["1068 Ward Quay"], "city": "Lawrence", "state": "KS", "postalCode": "66044", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "17fde357-dcc9-af8b-a8d3-4bd213afeb22", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -8386564734033958193 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Kizzie166 Boyle917"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Perry", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 18.394468086513864}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 57.60553191348613}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "17fde357-dcc9-af8b-a8d3-4bd213afeb22"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "17fde357-dcc9-af8b-a8d3-4bd213afeb22"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-74-5222"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99995861"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X12830565X"}], "name": [{"use": "official", "family": "Hackett68", "given": ["Merlin721", "Mark765"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-590-5802", "use": "home"}], "gender": "male", "birthDate": "1946-03-25", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.925313537935985}, {"url": "longitude", "valueDecimal": -94.66188590660273}]}], "line": ["471 Schultz Key"], "city": "Overland Park", "state": "KS", "postalCode": "66221", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "19158de4-66a2-f70f-e3bf-4396b312c8f1", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 70337806564489853 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Kasi212 Moen819"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Parsons", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 1.5385904521113984}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 59.4614095478886}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "19158de4-66a2-f70f-e3bf-4396b312c8f1"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "19158de4-66a2-f70f-e3bf-4396b312c8f1"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-85-1266"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99990753"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X71039289X"}], "name": [{"use": "official", "family": "Hills818", "given": ["Tawanda156", "Kenneth671"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Denesik803", "given": ["Tawanda156", "Kenneth671"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-251-5927", "use": "home"}], "gender": "female", "birthDate": "1961-02-11", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.547119773580256}, {"url": "longitude", "valueDecimal": -94.90820273599662}]}], "line": ["567 Prosacco Highlands"], "city": "Crawford", "state": "KS", "postalCode": "00000", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "D", "display": "Divorced"}], "text": "Divorced"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "1c498b42-61fd-6341-69c3-053f6e4fe404", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 6065419186154102420 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "An125 Anderson154"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Wichita", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 7.452561378411682}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 76.54743862158831}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "1c498b42-61fd-6341-69c3-053f6e4fe404"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "1c498b42-61fd-6341-69c3-053f6e4fe404"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-51-8175"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99978363"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X32865981X"}], "name": [{"use": "official", "family": "Daniel959", "given": ["Kala987", "Katlyn29"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Macejkovic424", "given": ["Kala987", "Katlyn29"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-831-5655", "use": "home"}], "gender": "female", "birthDate": "1934-12-28", "deceasedDateTime": "2019-04-08T04:38:57-04:00", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.43107198608998}, {"url": "longitude", "valueDecimal": -94.72525886272064}]}], "line": ["178 Kemmer Meadow"], "city": "Pittsburg", "state": "KS", "postalCode": "66762", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "D", "display": "Divorced"}], "text": "Divorced"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "24906e2c-e556-71dc-23d9-3e1d5fb08986", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 2617543668093113452 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2135-2", "display": "Hispanic or Latino"}}, {"url": "text", "valueString": "Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Ana Mar\u00eda762 Avil\u00e9s474"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Panama City", "state": "Panama", "country": "PA"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 12.265552567464365}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 16.734447432535635}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "24906e2c-e556-71dc-23d9-3e1d5fb08986"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "24906e2c-e556-71dc-23d9-3e1d5fb08986"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-53-7161"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99926267"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X2568593X"}], "name": [{"use": "official", "family": "Armas910", "given": ["Sofia418", "Natalia964"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Garza151", "given": ["Sofia418", "Natalia964"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-245-8961", "use": "home"}], "gender": "female", "birthDate": "1993-03-25", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.51690974066073}, {"url": "longitude", "valueDecimal": -97.73588087967143}]}], "line": ["847 Bruen Vale"], "city": "Wichita", "state": "KS", "postalCode": "67101", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "es", "display": "Spanish"}], "text": "Spanish"}}]} +{"resourceType": "Patient", "id": "267fc42d-cd9e-8527-1f9e-887fe7776147", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 7538693478283805875 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Leesa210 Abshire638"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Mission", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 25.61193020714673}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 38.38806979285327}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "267fc42d-cd9e-8527-1f9e-887fe7776147"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "267fc42d-cd9e-8527-1f9e-887fe7776147"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-71-1086"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99945470"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X10392384X"}], "name": [{"use": "official", "family": "Dooley940", "given": ["Audrey678", "Breanna581"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "McGlynn426", "given": ["Audrey678", "Breanna581"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-537-7574", "use": "home"}], "gender": "female", "birthDate": "1958-08-14", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.860372460288595}, {"url": "longitude", "valueDecimal": -99.36629554474268}]}], "line": ["1013 Flatley Station"], "city": "Hays", "state": "KS", "postalCode": "67601", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "D", "display": "Divorced"}], "text": "Divorced"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "26a3984f-b2a8-e67f-7abc-ff147a0e6e35", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -8536513071594482783 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Teresia279 Little434"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Basehor", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 13.394991371211043}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 67.60500862878895}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "26a3984f-b2a8-e67f-7abc-ff147a0e6e35"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "26a3984f-b2a8-e67f-7abc-ff147a0e6e35"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-32-4039"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99990417"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X1260041X"}], "name": [{"use": "official", "family": "Runolfsson901", "given": ["Antonia30", "Luciano237"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-476-3509", "use": "home"}], "gender": "male", "birthDate": "1941-08-10", "deceasedDateTime": "2023-04-06T12:27:20-04:00", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.98327691827945}, {"url": "longitude", "valueDecimal": -97.01531469975406}]}], "line": ["681 Wehner Annex Unit 67"], "city": "Chapman", "state": "KS", "postalCode": "67431", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "D", "display": "Divorced"}], "text": "Divorced"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "26baae20-c8c5-003a-ab6b-ebcc49be20db", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 6019697199276399842 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Lana840 Bartoletti50"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Holton", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 24.514316379651692}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 32.48568362034831}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "26baae20-c8c5-003a-ab6b-ebcc49be20db"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "26baae20-c8c5-003a-ab6b-ebcc49be20db"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-84-1915"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99930106"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X74912748X"}], "name": [{"use": "official", "family": "Hane680", "given": ["Lynwood354", "Brady998"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-112-1958", "use": "home"}], "gender": "male", "birthDate": "1965-06-14", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.559633767800705}, {"url": "longitude", "valueDecimal": -101.34800739173656}]}], "line": ["595 Weissnat Esplanade"], "city": "Ulysses", "state": "KS", "postalCode": "67880", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "2858705f-5af1-9869-4d94-894e09a9f99a", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 7055362722939679452 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Klara351 Rowe323"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Blue", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.0}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 7.0}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "2858705f-5af1-9869-4d94-894e09a9f99a"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "2858705f-5af1-9869-4d94-894e09a9f99a"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-75-7583"}], "name": [{"use": "official", "family": "Crist667", "given": ["Albert312", "Carlos172"]}], "telecom": [{"system": "phone", "value": "555-927-1929", "use": "home"}], "gender": "male", "birthDate": "2015-02-23", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.79925031640178}, {"url": "longitude", "valueDecimal": -97.44333571100962}]}], "line": ["668 Anderson Manor Suite 57"], "city": "Wichita", "state": "KS", "postalCode": "67208", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "2a0e1946-acf6-5a7e-9399-a9cbc4730199", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 5049998703359239282 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Aimee901 Braun514"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Arkansas City", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.0}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 4.0}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "2a0e1946-acf6-5a7e-9399-a9cbc4730199"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "2a0e1946-acf6-5a7e-9399-a9cbc4730199"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-76-8120"}], "name": [{"use": "official", "family": "Emmerich580", "given": ["Toby274"]}], "telecom": [{"system": "phone", "value": "555-595-9705", "use": "home"}], "gender": "female", "birthDate": "2018-02-20", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.22443075359697}, {"url": "longitude", "valueDecimal": -99.08656373151548}]}], "line": ["1040 Von Common Apt 30"], "city": "Larned", "state": "KS", "postalCode": "67550", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "2da1bee2-2bc2-4511-84e1-42860310e2fb", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 8601810008409642958 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Verona337 Beier427"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Wichita", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.3653105215022864}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 23.634689478497712}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "2da1bee2-2bc2-4511-84e1-42860310e2fb"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "2da1bee2-2bc2-4511-84e1-42860310e2fb"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-37-6978"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99920005"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X13631587X"}], "name": [{"use": "official", "family": "Reichert620", "given": ["Robena997", "Stephanie963"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-515-3473", "use": "home"}], "gender": "female", "birthDate": "1998-05-23", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.91131145005999}, {"url": "longitude", "valueDecimal": -95.1223821077985}]}], "line": ["461 Spinka Throughway Suite 0"], "city": "Eudora", "state": "KS", "postalCode": "66025", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "3627adb8-f741-acf3-2dd6-10f3bcbe1077", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 2116868092191653721 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Lavette209 Schamberger479"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Louisburg", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.23964923430376106}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 31.760350765696238}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "3627adb8-f741-acf3-2dd6-10f3bcbe1077"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "3627adb8-f741-acf3-2dd6-10f3bcbe1077"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-47-4402"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99940283"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X30854092X"}], "name": [{"use": "official", "family": "Hodkiewicz467", "given": ["Dalene805", "Elizabet136"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-684-3753", "use": "home"}], "gender": "female", "birthDate": "1990-04-27", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.43639486390531}, {"url": "longitude", "valueDecimal": -98.70414970361006}]}], "line": ["804 O'Kon Union Suite 19"], "city": "Osborne", "state": "KS", "postalCode": "67473", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "3ae095ec-8fe0-133b-36d4-8785a6ad8df3", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -7418871313950009537 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Tamatha836 Barton704"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Hutchinson", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.0172365762270763}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 14.982763423772925}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "3ae095ec-8fe0-133b-36d4-8785a6ad8df3"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "3ae095ec-8fe0-133b-36d4-8785a6ad8df3"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-85-3791"}], "name": [{"use": "official", "family": "Dach178", "given": ["Shanice479", "Chloe501"]}], "telecom": [{"system": "phone", "value": "555-995-3542", "use": "home"}], "gender": "female", "birthDate": "2007-06-18", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.951845796527564}, {"url": "longitude", "valueDecimal": -94.60168981852044}]}], "line": ["185 Lind Stravenue"], "city": "Leawood", "state": "KS", "postalCode": "66224", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "3cf7af45-2bee-aa9c-d524-40b487149d60", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -6023889436372266092 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Elli820 Pagac496"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Hutchinson", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 3.089054931808687}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 54.91094506819131}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "3cf7af45-2bee-aa9c-d524-40b487149d60"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "3cf7af45-2bee-aa9c-d524-40b487149d60"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-77-7611"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99928238"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X43599057X"}], "name": [{"use": "official", "family": "Parisian75", "given": ["Grant908", "Houston994"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-565-2720", "use": "home"}], "gender": "male", "birthDate": "1964-03-11", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.417207356525346}, {"url": "longitude", "valueDecimal": -97.7382429839889}]}], "line": ["672 Hilpert Vale Unit 80"], "city": "Lyon", "state": "KS", "postalCode": "00000", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "47c37c92-5932-9cfe-66be-208556780fe0", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 1226918032990396077 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Magen68 Corwin846"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Lenexa", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.8482209352076294}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 44.15177906479237}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "47c37c92-5932-9cfe-66be-208556780fe0"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "47c37c92-5932-9cfe-66be-208556780fe0"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-88-6310"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99984393"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X87035667X"}], "name": [{"use": "official", "family": "Smitham825", "given": ["Jackie93", "Jules135"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-839-3497", "use": "home"}], "gender": "male", "birthDate": "1977-01-10", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.3979766311928}, {"url": "longitude", "valueDecimal": -98.16051701886153}]}], "line": ["469 Bergstrom Fork Apt 90"], "city": "Lyons", "state": "KS", "postalCode": "67554", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "D", "display": "Divorced"}], "text": "Divorced"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "50f8b42e-17a6-e932-8546-da94004c597c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -3619668746990386301 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Melinda114 Watsica258"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Lowell", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 14.043882614811437}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 37.95611738518856}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "50f8b42e-17a6-e932-8546-da94004c597c"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "50f8b42e-17a6-e932-8546-da94004c597c"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-87-3881"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99919979"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X9656773X"}], "name": [{"use": "official", "family": "Watsica258", "given": ["Ronnie7", "Chester802"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-765-8371", "use": "home"}], "gender": "male", "birthDate": "1970-07-12", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.020656430667955}, {"url": "longitude", "valueDecimal": -95.68739019856058}]}], "line": ["895 Borer Bay"], "city": "Topeka", "state": "KS", "postalCode": "66622", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "51032f44-d514-26e9-3e85-e956561c076e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 6682847623163193781 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Leota851 Kuhic920"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Prairie", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 3.710942256037901}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 46.2890577439621}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "51032f44-d514-26e9-3e85-e956561c076e"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "51032f44-d514-26e9-3e85-e956561c076e"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-62-2685"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99958291"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X12264625X"}], "name": [{"use": "official", "family": "Lowe577", "given": ["Christinia886", "Bonnie873"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-596-6621", "use": "home"}], "gender": "female", "birthDate": "1973-01-01", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.39926677309247}, {"url": "longitude", "valueDecimal": -94.68954593413936}]}], "line": ["623 Witting Throughway Apt 78"], "city": "Pittsburg", "state": "KS", "postalCode": "66762", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "5ce2e599-fb6e-9b4d-3c2e-87310619b957", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -2834304837823726651 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Eleonor544 Gaylord332"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Wakefield", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 30.080961871642135}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 46.91903812835787}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "5ce2e599-fb6e-9b4d-3c2e-87310619b957"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "5ce2e599-fb6e-9b4d-3c2e-87310619b957"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-62-3187"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99924659"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X33657631X"}], "name": [{"use": "official", "family": "Durgan499", "given": ["Edwin773", "Heath320"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-919-9991", "use": "home"}], "gender": "male", "birthDate": "1945-12-25", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.58425125024735}, {"url": "longitude", "valueDecimal": -94.627271324276}]}], "line": ["626 Gulgowski Run"], "city": "Louisburg", "state": "KS", "postalCode": "66053", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "6385ddd7-2639-6505-3789-0521b8f66c8b", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 1637616888624523656 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Jackie93 Cormier289"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "South Hutchinson", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 12.939433768283461}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 91.06056623171654}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "6385ddd7-2639-6505-3789-0521b8f66c8b"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "6385ddd7-2639-6505-3789-0521b8f66c8b"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-51-9477"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99921947"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X47307775X"}], "name": [{"use": "official", "family": "Johnston597", "given": ["Eda506", "Nicholle822"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Macejkovic424", "given": ["Eda506", "Nicholle822"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-698-8072", "use": "home"}], "gender": "female", "birthDate": "1918-11-12", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.64304743335164}, {"url": "longitude", "valueDecimal": -97.32301328751704}]}], "line": ["205 Feest Loaf Suite 69"], "city": "Haysville", "state": "KS", "postalCode": "67217", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "6a883108-7b87-120b-d163-d369336e04e5", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -41772045361759692 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Amalia471 Purdy2"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Wichita", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.8383373306764343}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 18.161662669323565}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "6a883108-7b87-120b-d163-d369336e04e5"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "6a883108-7b87-120b-d163-d369336e04e5"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-97-8421"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99991043"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X19659493X"}], "name": [{"use": "official", "family": "Halvorson124", "given": ["Wilfredo622", "Leslie90"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-156-5697", "use": "home"}], "gender": "male", "birthDate": "2003-01-30", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.67563581339282}, {"url": "longitude", "valueDecimal": -97.33190006483368}]}], "line": ["241 Gutmann Spur"], "city": "Wichita", "state": "KS", "postalCode": "67206", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "7bf52d54-0d2a-265a-15aa-eeed7aaf4af6", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -1280672539189123675 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Marline710 Hilpert278"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Overland Park", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 14.937691318614437}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 28.062308681385563}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "7bf52d54-0d2a-265a-15aa-eeed7aaf4af6"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "7bf52d54-0d2a-265a-15aa-eeed7aaf4af6"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-64-2519"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99974285"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X42479905X"}], "name": [{"use": "official", "family": "Zieme486", "given": ["Alessandra932", "Kyong970"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Grimes165", "given": ["Alessandra932", "Kyong970"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-966-7737", "use": "home"}], "gender": "female", "birthDate": "1979-09-28", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.66467042774205}, {"url": "longitude", "valueDecimal": -98.0894612219802}]}], "line": ["723 Rolfson Grove Unit 11"], "city": "Kingman", "state": "KS", "postalCode": "67068", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "7cef0e6f-9aea-4079-dfc6-18a96454708e", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -4007497697342634603 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Joycelyn213 Heaney114"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Olathe", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 20.798241810235577}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 44.20175818976442}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "7cef0e6f-9aea-4079-dfc6-18a96454708e"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "7cef0e6f-9aea-4079-dfc6-18a96454708e"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-68-6816"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99946502"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X25178747X"}], "name": [{"use": "official", "family": "Rogahn59", "given": ["Gillian484", "Sheron583"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Breitenberg711", "given": ["Gillian484", "Sheron583"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-595-8048", "use": "home"}], "gender": "female", "birthDate": "1957-04-05", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.981214949149354}, {"url": "longitude", "valueDecimal": -94.652680559256}]}], "line": ["446 Trantow Mall"], "city": "Merriam", "state": "KS", "postalCode": "66202", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "7f941bcc-e7b2-99e1-585f-129d0ef1c13d", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 6760453914786008601 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Mafalda94 Denesik803"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Bonner Springs", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.0023491872495428664}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 12.997650812750457}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "7f941bcc-e7b2-99e1-585f-129d0ef1c13d"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "7f941bcc-e7b2-99e1-585f-129d0ef1c13d"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-61-6092"}], "name": [{"use": "official", "family": "Bins636", "given": ["Sandie760", "Christin490"]}], "telecom": [{"system": "phone", "value": "555-704-1239", "use": "home"}], "gender": "female", "birthDate": "2009-12-21", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.84568598284548}, {"url": "longitude", "valueDecimal": -97.68557575720399}]}], "line": ["523 Ullrich Way"], "city": "Salina", "state": "KS", "postalCode": "67470", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "8022fbbe-aaa4-056c-d0f5-ec074bf0656c", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -7446683066994782408 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Elizabet136 Hammes673"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Topeka", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.0}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 6.0}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "8022fbbe-aaa4-056c-d0f5-ec074bf0656c"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "8022fbbe-aaa4-056c-d0f5-ec074bf0656c"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-42-6853"}], "name": [{"use": "official", "family": "Hills818", "given": ["Santos184", "Weston546"]}], "telecom": [{"system": "phone", "value": "555-699-6124", "use": "home"}], "gender": "male", "birthDate": "2017-01-04", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.85100127213991}, {"url": "longitude", "valueDecimal": -96.58171385434883}]}], "line": ["587 Ruecker Viaduct Unit 81"], "city": "Marysville", "state": "KS", "postalCode": "66508", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "82b8a670-4700-30e8-24a0-b83efa3c5e0a", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 6328339628395769476 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Stephen891 Hansen121"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Wichita", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 12.348549199696759}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 16.65145080030324}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "82b8a670-4700-30e8-24a0-b83efa3c5e0a"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "82b8a670-4700-30e8-24a0-b83efa3c5e0a"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-30-9392"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99956603"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X40285513X"}], "name": [{"use": "official", "family": "Conn188", "given": ["Tatum703"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-608-2188", "use": "home"}], "gender": "female", "birthDate": "1993-11-10", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.66346115295117}, {"url": "longitude", "valueDecimal": -97.36645398928076}]}], "line": ["251 Mraz Bypass Suite 95"], "city": "Wichita", "state": "KS", "postalCode": "67260", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "8877ef1f-7cd7-3242-d7f0-73cf3f7165f4", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 9102786828920210441 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2054-5", "display": "Black or African American"}}, {"url": "text", "valueString": "Black or African American"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2135-2", "display": "Hispanic or Latino"}}, {"url": "text", "valueString": "Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Yolanda648 Col\u00f3n139"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Ponce", "state": "Puerto Rico", "country": "PR"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 13.435757487164977}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 20.564242512835023}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "8877ef1f-7cd7-3242-d7f0-73cf3f7165f4"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "8877ef1f-7cd7-3242-d7f0-73cf3f7165f4"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-19-8269"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99944319"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X13742700X"}], "name": [{"use": "official", "family": "Rosales49", "given": ["Hugo693", "Jos\u00e9 Eduardo181"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-993-2211", "use": "home"}], "gender": "male", "birthDate": "1988-08-06", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.916967368448375}, {"url": "longitude", "valueDecimal": -95.13114871843513}]}], "line": ["1079 Morar Lock"], "city": "Eudora", "state": "KS", "postalCode": "66025", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "es", "display": "Spanish"}], "text": "Spanish"}}]} +{"resourceType": "Patient", "id": "9b17654f-a902-3d56-9000-4ade3dd3059f", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -8550171271564455217 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2135-2", "display": "Hispanic or Latino"}}, {"url": "text", "valueString": "Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Raquel318 Correa904"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "San Jose", "state": "San Jose", "country": "CR"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.9068800415409909}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 51.093119958459006}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "9b17654f-a902-3d56-9000-4ade3dd3059f"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "9b17654f-a902-3d56-9000-4ade3dd3059f"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-83-2910"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99944291"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X17200910X"}], "name": [{"use": "official", "family": "Gait\u00e1n874", "given": ["Laura391"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "G\u00f3mez206", "given": ["Laura391"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-726-2470", "use": "home"}], "gender": "female", "birthDate": "1970-08-04", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.71103457817317}, {"url": "longitude", "valueDecimal": -97.39496853110613}]}], "line": ["1058 Hauck Grove"], "city": "Wichita", "state": "KS", "postalCode": "67228", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "es", "display": "Spanish"}], "text": "Spanish"}}]} +{"resourceType": "Patient", "id": "9c8d8539-0b1e-73e2-b64f-83f1ea601fa4", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -2630771468131953601 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Yesenia104 Keeling57"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Palestine", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 9.856240053509804}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 69.14375994649019}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "9c8d8539-0b1e-73e2-b64f-83f1ea601fa4"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "9c8d8539-0b1e-73e2-b64f-83f1ea601fa4"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-26-7177"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99960038"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X677307X"}], "name": [{"use": "official", "family": "Fahey393", "given": ["Frederic454"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-194-5741", "use": "home"}], "gender": "male", "birthDate": "1941-08-10", "deceasedDateTime": "2021-02-14T14:27:20-05:00", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.93044329462347}, {"url": "longitude", "valueDecimal": -97.03230366588035}]}], "line": ["800 Shanahan Hollow"], "city": "Chapman", "state": "KS", "postalCode": "67431", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "W", "display": "Widowed"}], "text": "Widowed"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "9eaa056b-1efc-0cc8-70ff-62c8f704cc13", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 2586431713499437379 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Raye931 Powlowski563"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Wichita", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 17.031145447134886}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 67.96885455286511}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "9eaa056b-1efc-0cc8-70ff-62c8f704cc13"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "9eaa056b-1efc-0cc8-70ff-62c8f704cc13"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-50-4345"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99957142"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X11398586X"}], "name": [{"use": "official", "family": "Glover433", "given": ["Waldo53", "Amado512"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-427-8484", "use": "home"}], "gender": "male", "birthDate": "1937-04-09", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.76192065993203}, {"url": "longitude", "valueDecimal": -97.54411141024849}]}], "line": ["899 Huel Route"], "city": "Wichita", "state": "KS", "postalCode": "67223", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthInteger": 3, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "a28be3e1-a6bd-7df4-fc81-1140848f8453", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -3630262819068677391 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Meaghan273 Mitchell808"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Wichita", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.0626029916951206}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 25.93739700830488}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "a28be3e1-a6bd-7df4-fc81-1140848f8453"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "a28be3e1-a6bd-7df4-fc81-1140848f8453"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-45-4355"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99967329"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X63883485X"}], "name": [{"use": "official", "family": "Wilderman619", "given": ["Leann224", "Brittney657"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-403-6115", "use": "home"}], "gender": "female", "birthDate": "1996-10-25", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.84378913515948}, {"url": "longitude", "valueDecimal": -94.89388935610133}]}], "line": ["923 Shanahan Stravenue"], "city": "Olathe", "state": "KS", "postalCode": "66215", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "a46846ca-3f95-2cbb-3a9d-5eae150a0273", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 4331541603485737389 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Deborah357 Windler79"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Smoky Hill", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 40.59500284802149}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 9.404997151978513}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "a46846ca-3f95-2cbb-3a9d-5eae150a0273"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "a46846ca-3f95-2cbb-3a9d-5eae150a0273"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-40-5646"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99964137"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X11408914X"}], "name": [{"use": "official", "family": "West559", "given": ["Barbie211", "Leeanna836"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Koelpin146", "given": ["Barbie211", "Leeanna836"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-739-6160", "use": "home"}], "gender": "female", "birthDate": "1972-01-13", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.35326229339181}, {"url": "longitude", "valueDecimal": -94.8820814752962}]}], "line": ["491 Stokes Well Unit 4"], "city": "Leavenworth", "state": "KS", "postalCode": "66027", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "a5b171a7-9b28-20e7-86a7-936ecbf55f36", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -3446781946639950354 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Pearly845 Lowe577"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Dodge City", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 21.783298483661184}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 43.216701516338816}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "a5b171a7-9b28-20e7-86a7-936ecbf55f36"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "a5b171a7-9b28-20e7-86a7-936ecbf55f36"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-99-3471"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99950514"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X70697485X"}], "name": [{"use": "official", "family": "Nader710", "given": ["Patrica776", "Noel608"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "McClure239", "given": ["Patrica776", "Noel608"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-848-8593", "use": "home"}], "gender": "female", "birthDate": "1957-05-24", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.01132635685201}, {"url": "longitude", "valueDecimal": -97.95023802422766}]}], "line": ["655 Ernser Rapid"], "city": "Hutchinson", "state": "KS", "postalCode": "67501", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "W", "display": "Widowed"}], "text": "Widowed"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "a5bc08ea-9462-c4f5-1bd2-ff342598ac99", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 7044641296887941236 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Lucina142 Emard19"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Derby", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 12.440541874568654}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 54.55945812543135}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "a5bc08ea-9462-c4f5-1bd2-ff342598ac99"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "a5bc08ea-9462-c4f5-1bd2-ff342598ac99"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-28-1491"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99962038"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X3309258X"}], "name": [{"use": "official", "family": "Will178", "given": ["Monika509", "Jani266"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-260-3103", "use": "home"}], "gender": "female", "birthDate": "1955-06-18", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.151264640518626}, {"url": "longitude", "valueDecimal": -94.62620662015603}]}], "line": ["605 Murray View Suite 70"], "city": "Kansas City", "state": "KS", "postalCode": "66111", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "ac91b90d-97e4-4fc5-41cd-036bac49e6e8", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 819903991728441393 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Azucena377 Klein929"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Goodland", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 11.980639282704722}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 82.01936071729529}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "ac91b90d-97e4-4fc5-41cd-036bac49e6e8"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "ac91b90d-97e4-4fc5-41cd-036bac49e6e8"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-91-3993"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99950444"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X67236079X"}], "name": [{"use": "official", "family": "Pouros728", "given": ["Man114", "Rob341"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-963-3783", "use": "home"}], "gender": "male", "birthDate": "1928-05-12", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.26232582432376}, {"url": "longitude", "valueDecimal": -98.55135385655818}]}], "line": ["102 Schmeler Promenade Suite 63"], "city": "Medicine Lodge", "state": "KS", "postalCode": "67104", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "ad239efc-637c-e428-c829-b87e700d5446", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -854473585003794649 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2054-5", "display": "Black or African American"}}, {"url": "text", "valueString": "Black or African American"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Selina302 Harris789"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Overland Park", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 31.397617263893526}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 39.60238273610648}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "ad239efc-637c-e428-c829-b87e700d5446"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "ad239efc-637c-e428-c829-b87e700d5446"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-89-5103"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99932506"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X78443131X"}], "name": [{"use": "official", "family": "Harris789", "given": ["Felipe97", "Ambrose149"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-113-6963", "use": "home"}], "gender": "male", "birthDate": "1952-01-04", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.962727331745256}, {"url": "longitude", "valueDecimal": -100.34903628061684}]}], "line": ["182 Durgan Port Apt 68"], "city": "Cimarron", "state": "KS", "postalCode": "67835", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "D", "display": "Divorced"}], "text": "Divorced"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "ad3ed58a-5645-af0a-eeca-ab543123a8aa", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 3061915768523113574 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Mona85 Lemke654"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Topeka", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.019323602305455267}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 23.980676397694545}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "ad3ed58a-5645-af0a-eeca-ab543123a8aa"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "ad3ed58a-5645-af0a-eeca-ab543123a8aa"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-59-8280"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99999165"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X18255608X"}], "name": [{"use": "official", "family": "Howe413", "given": ["Veola813"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-616-2654", "use": "home"}], "gender": "female", "birthDate": "1998-11-16", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.03897605692696}, {"url": "longitude", "valueDecimal": -94.6872339967285}]}], "line": ["687 O'Keefe Byway Apt 94"], "city": "Prairie", "state": "KS", "postalCode": "66206", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -3007510288670633025 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Samira471 Altenwerth646"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Olathe", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 12.18001162160856}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 46.81998837839144}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "c1bfec36-dc2c-afc8-c767-3d35ed2bf6f0"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-67-9820"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99932804"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X82445426X"}], "name": [{"use": "official", "family": "Bosco882", "given": ["Dorthea49", "Julene165"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Gleichner915", "given": ["Dorthea49", "Julene165"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-561-1887", "use": "home"}], "gender": "female", "birthDate": "1963-05-12", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.98738857959264}, {"url": "longitude", "valueDecimal": -94.58045914807212}]}], "line": ["286 King Harbor Apt 53"], "city": "Overland Park", "state": "KS", "postalCode": "66209", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "c20e5afd-30df-ac3d-6684-cc29438a9bc4", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 1719269484118851020 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Penny812 Bergnaum523"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Wichita", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.03679180012162453}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 18.963208199878377}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "c20e5afd-30df-ac3d-6684-cc29438a9bc4"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "c20e5afd-30df-ac3d-6684-cc29438a9bc4"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-32-8290"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99969615"}], "name": [{"use": "official", "family": "Stehr398", "given": ["Christia477"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-166-9283", "use": "home"}], "gender": "female", "birthDate": "2003-07-04", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.7018376257058}, {"url": "longitude", "valueDecimal": -94.80400392483257}]}], "line": ["728 Haley Haven Unit 46"], "city": "Overland Park", "state": "KS", "postalCode": "66221", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "c7ad408d-fcae-b54a-eb1d-26d48f7a5f84", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 5451274485141752721 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Nancie476 Glover433"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Shawnee", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.7195655311972211}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 60.28043446880278}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "c7ad408d-fcae-b54a-eb1d-26d48f7a5f84"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "c7ad408d-fcae-b54a-eb1d-26d48f7a5f84"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-49-1334"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99916350"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X84112785X"}], "name": [{"use": "official", "family": "Cole117", "given": ["Tarsha65", "Rashida558"], "prefix": ["Mrs."]}, {"use": "maiden", "family": "Reichel38", "given": ["Tarsha65", "Rashida558"], "prefix": ["Mrs."]}], "telecom": [{"system": "phone", "value": "555-276-1042", "use": "home"}], "gender": "female", "birthDate": "1961-04-26", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.8930121502897}, {"url": "longitude", "valueDecimal": -95.06918355549239}]}], "line": ["1034 Walker Fort"], "city": "Eudora", "state": "KS", "postalCode": "66025", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "c7c5c028-f1fb-962b-8db2-dfd4c6d6b02a", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -5736819845306564799 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Isabella615 Pagac496"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Clifton", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 24.6491823687295}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 29.3508176312705}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "c7c5c028-f1fb-962b-8db2-dfd4c6d6b02a"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "c7c5c028-f1fb-962b-8db2-dfd4c6d6b02a"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-90-9948"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99931428"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X10618445X"}], "name": [{"use": "official", "family": "Kunde533", "given": ["Chadwick722", "Rupert654"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-857-1227", "use": "home"}], "gender": "male", "birthDate": "1968-11-08", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.66857241543659}, {"url": "longitude", "valueDecimal": -97.35610215112061}]}], "line": ["444 Towne Rapid Unit 74"], "city": "Wichita", "state": "KS", "postalCode": "67210", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "cb8c0665-30ee-479c-8994-d29f1a6848b0", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -7710491459487921490 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Zetta950 Carroll471"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Lyons", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 1.2263319414436817}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 52.77366805855632}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "cb8c0665-30ee-479c-8994-d29f1a6848b0"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "cb8c0665-30ee-479c-8994-d29f1a6848b0"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-88-6034"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99927322"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X75743096X"}], "name": [{"use": "official", "family": "Farrell962", "given": ["Logan497"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-916-2675", "use": "home"}], "gender": "male", "birthDate": "1968-06-07", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.05640871745975}, {"url": "longitude", "valueDecimal": -94.70289906766499}]}], "line": ["374 Kunze Trailer"], "city": "Merriam", "state": "KS", "postalCode": "66202", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "W", "display": "Widowed"}], "text": "Widowed"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "cc9fb8e2-fe52-b72a-aebb-9d10260f121b", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 6843971768804362141 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Debbra216 Nicolas769"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Olathe", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.23604838098117298}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 15.763951619018828}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "cc9fb8e2-fe52-b72a-aebb-9d10260f121b"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "cc9fb8e2-fe52-b72a-aebb-9d10260f121b"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-66-1134"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99945414"}], "name": [{"use": "official", "family": "Bashirian201", "given": ["Babette571", "Mignon230"]}], "telecom": [{"system": "phone", "value": "555-264-6910", "use": "home"}], "gender": "female", "birthDate": "2006-07-06", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 39.336380949445285}, {"url": "longitude", "valueDecimal": -94.9120446696429}]}], "line": ["1046 Brekke Byway Unit 32"], "city": "Leavenworth", "state": "KS", "postalCode": "66048", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "d3c0274f-f42b-8d2b-15f2-82331e723383", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -6953798596997771096 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Sharla853 Ortiz186"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Gypsum", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.0}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 23.0}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "d3c0274f-f42b-8d2b-15f2-82331e723383"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "d3c0274f-f42b-8d2b-15f2-82331e723383"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-42-1535"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99923516"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X88408307X"}], "name": [{"use": "official", "family": "Cruickshank494", "given": ["Anamaria46"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-994-6450", "use": "home"}], "gender": "female", "birthDate": "1999-02-04", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.396241762300235}, {"url": "longitude", "valueDecimal": -96.21945227802583}]}], "line": ["345 Ritchie Heights"], "city": "Emporia", "state": "KS", "postalCode": "66801", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "dffa62dc-8ec2-1cd6-ee75-f9156a5283fe", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -6590279978475009295 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2135-2", "display": "Hispanic or Latino"}}, {"url": "text", "valueString": "Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Clemmie560 Goldner995"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Atchison", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.0}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 12.0}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "dffa62dc-8ec2-1cd6-ee75-f9156a5283fe"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "dffa62dc-8ec2-1cd6-ee75-f9156a5283fe"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-49-1010"}], "name": [{"use": "official", "family": "Kshlerin58", "given": ["Cedric746"]}], "telecom": [{"system": "phone", "value": "555-233-7381", "use": "home"}], "gender": "male", "birthDate": "2010-04-04", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.73039613741828}, {"url": "longitude", "valueDecimal": -97.3635341628445}]}], "line": ["404 Bashirian Corner Unit 50"], "city": "Wichita", "state": "KS", "postalCode": "67216", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "e455ca3f-fc16-6ffc-297a-adc27e2db183", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -3590221103340223376 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2135-2", "display": "Hispanic or Latino"}}, {"url": "text", "valueString": "Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Susana117 Jim\u00ednez732"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Buenos Aires", "state": "Ciudad de Buenos Aires", "country": "AR"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 21.808628190050513}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 71.19137180994949}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "e455ca3f-fc16-6ffc-297a-adc27e2db183"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "e455ca3f-fc16-6ffc-297a-adc27e2db183"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-48-6198"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99930308"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X56186057X"}], "name": [{"use": "official", "family": "Gamboa193", "given": ["Rodrigo242", "Alejandro916"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-272-3745", "use": "home"}], "gender": "male", "birthDate": "1929-05-06", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.40080288106162}, {"url": "longitude", "valueDecimal": -94.74142665788541}]}], "line": ["151 Wintheiser Parade"], "city": "Pittsburg", "state": "KS", "postalCode": "66762", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married"}], "text": "Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "es", "display": "Spanish"}], "text": "Spanish"}}]} +{"resourceType": "Patient", "id": "e80dda2c-a260-dbf7-3167-bf0945f3a91d", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: -8160295042230365605 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2054-5", "display": "Black or African American"}}, {"url": "text", "valueString": "Black or African American"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Maybelle917 Deckow585"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Kansas City", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.0}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 19.0}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "e80dda2c-a260-dbf7-3167-bf0945f3a91d"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "e80dda2c-a260-dbf7-3167-bf0945f3a91d"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-82-9398"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99957047"}], "name": [{"use": "official", "family": "Dicki44", "given": ["Cameron381", "Stacee229"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-988-4378", "use": "home"}], "gender": "female", "birthDate": "2003-05-15", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.59966545319182}, {"url": "longitude", "valueDecimal": -97.46092511479074}]}], "line": ["899 Rowe Boulevard"], "city": "Wichita", "state": "KS", "postalCode": "67219", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} +{"resourceType": "Patient", "id": "f9399f0d-5401-09f3-d4ff-89b1aa51b9c8", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 4182744072739949499 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Twanna669 Murazik203"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "M"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Hays", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.07035170871210875}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 19.92964829128789}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "f9399f0d-5401-09f3-d4ff-89b1aa51b9c8"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "f9399f0d-5401-09f3-d4ff-89b1aa51b9c8"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-13-6002"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99970173"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X33028658X"}], "name": [{"use": "official", "family": "Kirlin939", "given": ["Brain142", "Lonny638"], "prefix": ["Mr."]}], "telecom": [{"system": "phone", "value": "555-601-3353", "use": "home"}], "gender": "male", "birthDate": "2002-03-08", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 38.80044476921883}, {"url": "longitude", "valueDecimal": -97.61718325232847}]}], "line": ["106 Kilback Village Suite 72"], "city": "Salina", "state": "KS", "postalCode": "67401", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthInteger": 1, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} diff --git a/tests/test_data/duckdb_data/patient/patient1.ndjson b/tests/test_data/duckdb_data/patient/patient1.ndjson new file mode 100644 index 00000000..394a68be --- /dev/null +++ b/tests/test_data/duckdb_data/patient/patient1.ndjson @@ -0,0 +1 @@ +{"resourceType": "Patient", "id": "0734762a-9db6-22fc-b595-c3e472bb2a9a", "meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]}, "text": {"status": "generated", "div": "
Generated by Synthea.Version identifier: dd1e3be\n . Person seed: 6849163071282260453 Population seed: 54321
"}, "extension": [{"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2106-3", "display": "White"}}, {"url": "text", "valueString": "White"}]}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", "extension": [{"url": "ombCategory", "valueCoding": {"system": "urn:oid:2.16.840.1.113883.6.238", "code": "2186-5", "display": "Not Hispanic or Latino"}}, {"url": "text", "valueString": "Not Hispanic or Latino"}]}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", "valueString": "Willodean275 Predovic534"}, {"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F"}, {"url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", "valueAddress": {"city": "Lawrence", "state": "Kansas", "country": "US"}}, {"url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years", "valueDecimal": 0.3108091009970718}, {"url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years", "valueDecimal": 19.689190899002927}], "identifier": [{"system": "https://github.com/synthetichealth/synthea", "value": "0734762a-9db6-22fc-b595-c3e472bb2a9a"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number"}], "text": "Medical Record Number"}, "system": "http://hospital.smarthealthit.org", "value": "0734762a-9db6-22fc-b595-c3e472bb2a9a"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "SS", "display": "Social Security Number"}], "text": "Social Security Number"}, "system": "http://hl7.org/fhir/sid/us-ssn", "value": "999-89-4169"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "DL", "display": "Driver's license number"}], "text": "Driver's license number"}, "system": "urn:oid:2.16.840.1.113883.4.3.25", "value": "S99986210"}, {"type": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport Number"}], "text": "Passport Number"}, "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber", "value": "X16797661X"}], "name": [{"use": "official", "family": "Kerluke267", "given": ["Marni913", "Scarlett814"], "prefix": ["Ms."]}], "telecom": [{"system": "phone", "value": "555-100-2596", "use": "home"}], "gender": "female", "birthDate": "2002-12-21", "address": [{"extension": [{"url": "http://hl7.org/fhir/StructureDefinition/geolocation", "extension": [{"url": "latitude", "valueDecimal": 37.62901746670738}, {"url": "longitude", "valueDecimal": -97.55651294281942}]}], "line": ["342 Wilderman Gateway"], "city": "Wichita", "state": "KS", "postalCode": "67226", "country": "US"}], "maritalStatus": {"coding": [{"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "S", "display": "Never Married"}], "text": "Never Married"}, "multipleBirthBoolean": false, "communication": [{"language": {"coding": [{"system": "urn:ietf:bcp:47", "code": "en-US", "display": "English (United States)"}], "text": "English (United States)"}}]} diff --git a/tests/test_duckdb.py b/tests/test_duckdb.py new file mode 100644 index 00000000..75bb910b --- /dev/null +++ b/tests/test_duckdb.py @@ -0,0 +1,42 @@ +""" tests for duckdb backend support """ + +import glob +import os +import tempfile +from pathlib import Path + +from cumulus_library import cli + + +def test_duckdb_core_build_and_export(): + data_dir = f"{Path(__file__).parent}/test_data/duckdb_data" + + with tempfile.TemporaryDirectory() as tmpdir: + cli.main( + [ + "build", + "--target=core", + "--db-type=duckdb", + f"--database={tmpdir}/duck.db", + f"--load-ndjson-dir={data_dir}", + ] + ) + cli.main( + [ + "export", + "--target=core", + "--db-type=duckdb", + f"--database={tmpdir}/duck.db", + f"{tmpdir}/counts", + ] + ) + + # Now check each csv file - we'll assume the parquest are alright + csv_files = glob.glob(f"{tmpdir}/counts/core/*.csv") + for csv_file in csv_files: + basename = Path(csv_file).name + with open(csv_file) as f: + generated = f.read().strip() + with open(f"{data_dir}/expected_export/core/{basename}") as f: + expected = f.read().strip() + assert generated == expected, basename diff --git a/tests/test_study_parser.py b/tests/test_study_parser.py index 9d16dcbb..dc7c3643 100644 --- a/tests/test_study_parser.py +++ b/tests/test_study_parser.py @@ -94,7 +94,7 @@ def test_clean_study(mock_output, schema, verbose, prefix, confirm, query_res, r with raises: with mock.patch.object(builtins, "input", lambda _: confirm): mock_cursor = mock.MagicMock() - mock_cursor.__iter__.return_value = [[query_res]] + mock_cursor.fetchall.return_value = [[query_res]] parser = StudyManifestParser("./tests/test_data/study_valid/") tables = parser.clean_study(mock_cursor, schema, verbose, prefix=prefix) diff --git a/tests/test_template_utils.py b/tests/test_template_utils.py index b23129b8..ec80455c 100644 --- a/tests/test_template_utils.py +++ b/tests/test_template_utils.py @@ -1,13 +1,14 @@ """ tests for the cli interface to studies """ from unittest import mock -from rich.progress import Progress import pyathena import pytest -from cumulus_library.helper import get_progress_bar -from cumulus_library.template_sql.utils import is_codeable_concept_populated +from cumulus_library.template_sql.utils import ( + is_codeable_concept_array_populated, + is_codeable_concept_populated, +) REGION = "us-east-1" WORKGROUP = "test_wg" @@ -16,53 +17,53 @@ @mock.patch("pyathena.connect") @pytest.mark.parametrize( - "query_results,expected", + "query_results,allow_partial,expected", [ - ((("foo"), (["coding"]), ("baz")), True), - ((("foo"), (["coding"]), None), False), - ((("foo"), (["varchar"]), None), False), - ((None, (["varchar"]), None), False), + ((("foo"), (["coding"]), ("baz")), True, True), + ((("foo"), (["coding"]), ("baz")), False, False), + ((("foo"), (["coding, code, system, display"]), ("baz")), False, True), + ((("foo"), (["coding"]), None), True, False), + ((("foo"), (["varchar"]), None), True, False), + ((None, (["varchar"]), None), True, False), ], ) -def test_is_codeable_concept_populated(mock_pyathena, query_results, expected): +def test_is_codeable_concept_populated( + mock_pyathena, query_results, allow_partial, expected +): cursor = pyathena.connect( region_name=REGION, work_group=WORKGROUP, schema_name=SCHEMA, ).cursor() cursor.fetchone.side_effect = query_results - progress = Progress() - with get_progress_bar(transient=True) as progress: - task = progress.add_task( - "test_task", - total=3, - ) - res = is_codeable_concept_populated(SCHEMA, "table", "base_col", cursor) + res = is_codeable_concept_populated( + SCHEMA, "table", "base_col", cursor, allow_partial=allow_partial + ) assert res == expected @mock.patch("pyathena.connect") @pytest.mark.parametrize( - "query_results,expected", + "query_results,allow_partial,expected", [ - ((("foo"), (["coding"]), ("baz")), True), - ((("foo"), (["coding"]), None), False), - ((("foo"), (["varchar"]), None), False), - ((None, (["varchar"]), None), False), + ((("foo"), (["coding"]), ("baz")), True, True), + ((("foo"), (["coding"]), ("baz")), False, False), + ((("foo"), (["coding, code, system, display"]), ("baz")), False, True), + ((("foo"), (["coding"]), None), True, False), + ((("foo"), (["varchar"]), None), True, False), + ((None, (["varchar"]), None), True, False), ], ) -def test_is_codeable_concept_array_populated(mock_pyathena, query_results, expected): +def test_is_codeable_concept_array_populated( + mock_pyathena, query_results, allow_partial, expected +): cursor = pyathena.connect( region_name=REGION, work_group=WORKGROUP, schema_name=SCHEMA, ).cursor() cursor.fetchone.side_effect = query_results - progress = Progress() - with get_progress_bar(transient=True) as progress: - task = progress.add_task( - "test_task", - total=3, - ) - res = is_codeable_concept_populated(SCHEMA, "table", "base_col", cursor) + res = is_codeable_concept_array_populated( + SCHEMA, "table", "base_col", cursor, allow_partial=allow_partial + ) assert res == expected diff --git a/tests/test_templates.py b/tests/test_templates.py index 3552c46e..2370b1f1 100644 --- a/tests/test_templates.py +++ b/tests/test_templates.py @@ -158,7 +158,7 @@ def test_get_column_datatype_query(): WHERE table_schema = 'schema_name' AND table_name = 'table_name' - AND column_name = 'column_name'""" + AND LOWER(column_name) = 'column_name'""" query = get_column_datatype_query( schema_name="schema_name",