diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dced5bcb2..c7277c32a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,13 +30,10 @@ jobs: ruby-version: 2.7.2 bundler-cache: true - - name: Use Node.js 14.x + - name: Use Node.js 16.x uses: actions/setup-node@v2 with: - node-version: 14.x - - - name: Use latest npm - run: npm install -g npm + node-version: 16.x - name: Install bundler & bundle-audit run: | @@ -91,13 +88,10 @@ jobs: ruby-version: 2.7.2 bundler-cache: true - - name: Use Node.js 14.x + - name: Use Node.js 16.x uses: actions/setup-node@v2 with: - node-version: 14.x - - - name: Use latest npm - run: npm install -g npm + node-version: 16.x - name: Install bundler & bundle-audit run: | diff --git a/Dockerfile b/Dockerfile index dbedccb76..4013a65f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN bash -lc "rvm install ruby-${RUBY_VERSION} && rvm --default use ruby-${RUBY_ RUN rm -f /etc/service/nginx/down \ && rm -f /etc/nginx/sites-enabled/default \ && apt update \ - && curl -fsSL https://deb.nodesource.com/setup_14.x | bash - \ + && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ && apt-get install -y nodejs \ && npm install -g npm@latest \ && apt-get install shared-mime-info -y diff --git a/Gemfile.lock b/Gemfile.lock index a2d99b2e2..3aad6fda2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,6 +1,6 @@ GIT remote: https://github.com/projecttacoma/cqm-parsers.git - revision: 847019101f1a122f44e3cda0b7313d40cb71e6bb + revision: 5a365ca38825eac00017d2eb2cb5c35ad96d62f8 branch: bonnie_version specs: cqm-parsers (0.2.1.1) diff --git a/app/assets/javascripts/views/import_measure_view.js.coffee b/app/assets/javascripts/views/import_measure_view.js.coffee index 93496bffc..556ccc8fc 100644 --- a/app/assets/javascripts/views/import_measure_view.js.coffee +++ b/app/assets/javascripts/views/import_measure_view.js.coffee @@ -72,11 +72,6 @@ class Thorax.Views.ImportMeasure extends Thorax.Views.BonnieView $('#vsac-query-settings').removeClass('hidden') $('#vsacCachedMsg').removeClass('hidden') $('#loadButton').prop('disabled', false) - # If the measure import window is open long enough for the VSAC - # credentials to expire, we need to reshow the vsacApiKey dialog. - setTimeout -> - @clearCachedVSACTicket() - , new Date(data.expires) - new Date() else $('#vsacSignIn').removeClass('hidden') $('#vsac-query-settings').removeClass('hidden') diff --git a/app/controllers/api_v1/measures_controller.rb b/app/controllers/api_v1/measures_controller.rb index c4a8d890c..21e120ace 100644 --- a/app/controllers/api_v1/measures_controller.rb +++ b/app/controllers/api_v1/measures_controller.rb @@ -81,8 +81,7 @@ def description param :population_titles, Array, of: String, :required => false, :desc => "The titles of the populations. If this is not included, populations will assume default values. i.e. \"Population 1\", \"Population 2\", etc." param :calculate_sdes, %w[true false], :required => false, :desc => "Should Supplemental Data Elements be included in calculations. Defaults to 'false' if not supplied." - param :vsac_tgt, String, :required => true, :desc => "VSAC ticket granting ticket. See https://www.nlm.nih.gov/vsac/support/" - param :vsac_tgt_expires_at, Integer, :required => true, :desc => "VSAC ticket granting ticket expiration time in seconds since epoch." + param :vsac_api_key, String, :required => true, :desc => "UMLS Api Key." param :vsac_query_type, %w[release profile], :required => false, :desc => "The type of VSAC query, either 'release', or 'profile'. Default to 'profile' if not supplied." param :vsac_query_include_draft, %w[true false], :required => false, :desc => "If VSAC should fetch draft value sets. Defaults to 'true' if not supplied." param :vsac_query_release, String, :required => false, :desc => "The program release used to retrieve value sets. Defaults to latest release for the eCQM program." @@ -210,7 +209,7 @@ def calculated_results formats ["multipart/form-data"] error :code => 400, :desc => "Client sent bad parameters. Response contains explanation." error :code => 409, :desc => "Measure with this HQMF Set ID already exists." - error :code => 500, :desc => "A server error occured." + error :code => 500, :desc => "A server error occurred." param_group :measure_upload def create permitted_params = params.permit!.to_h diff --git a/app/controllers/measures_controller.rb b/app/controllers/measures_controller.rb index 4b56f11d9..25c9f51bb 100644 --- a/app/controllers/measures_controller.rb +++ b/app/controllers/measures_controller.rb @@ -31,7 +31,7 @@ def create begin scan_for_viruses(params[:measure_file]) - vsac_tgt = obtain_ticket_granting_ticket + set_vsac_api_key rescue VirusFoundError => e logger.error "VIRSCAN: error message: #{e.message}" raise MeasurePackageVirusFoundError.new @@ -43,13 +43,11 @@ def create raise convert_vsac_error_into_shared_error(e) end - params[:vsac_tgt] = vsac_tgt[:ticket] - params[:vsac_tgt_expires_at] = vsac_tgt[:expires] measures, main_hqmf_set_id = persist_measure(params[:measure_file], params.permit!.to_h, current_user) redirect_to "#{root_path}##{params[:redirect_route]}" rescue StandardError => e - # also clear the ticket granting ticket in the session if it was a VSACTicketExpiredError - session[:vsac_tgt] = nil if e.is_a?(VSACTicketExpiredError) + # also clear the vsac api key in the session if it was a VSACInvalidCredentialsError + session[:vsac_api_key] = nil if e.is_a?(VSACInvalidCredentialsError) flash[:error] = turn_exception_into_shared_error_if_needed(e).front_end_version redirect_to "#{root_path}##{params[:redirect_route]}" end @@ -130,20 +128,24 @@ def measurement_period private def persist_measure(uploaded_file, permitted_params, user) - measures, main_hqmf_set_id = - if permitted_params[:hqmf_set_id].present? - update_measure(uploaded_file: uploaded_file, - target_id: permitted_params[:hqmf_set_id], - value_set_loader: build_vs_loader(permitted_params, false), - user: user) - else - create_measure(uploaded_file: uploaded_file, - measure_details: retrieve_measure_details(permitted_params), - value_set_loader: build_vs_loader(permitted_params, false), - user: user) - end - check_measures_for_unsupported_data_elements(measures) - return measures, main_hqmf_set_id + logger.tagged(user.harp_id ? user.harp_id : "unknown user") do + measures, main_hqmf_set_id = + if permitted_params[:hqmf_set_id].present? + logger.info("update") + update_measure(uploaded_file: uploaded_file, + target_id: permitted_params[:hqmf_set_id], + value_set_loader: build_vs_loader(permitted_params, false), + user: user) + else + logger.info("create") + create_measure(uploaded_file: uploaded_file, + measure_details: retrieve_measure_details(permitted_params), + value_set_loader: build_vs_loader(permitted_params, false), + user: user) + end + check_measures_for_unsupported_data_elements(measures) + return measures, main_hqmf_set_id + end end def check_measures_for_unsupported_data_elements(measures) @@ -162,6 +164,15 @@ def retrieve_measure_details(params) } end + def set_vsac_api_key + if session[:vsac_api_key].nil? + raise Util::VSAC::VSACNoCredentialsError.new if params[:vsac_api_key].nil? + session[:vsac_api_key] = params[:vsac_api_key] + else + params[:vsac_api_key] = session[:vsac_api_key] + end + end + def shift_years(measure, year_shift) # Copy the patients to make sure there are no errors before saving every patient patients = CQM::Patient.by_user_and_hqmf_set_id(current_user, measure.hqmf_set_id).all.entries @@ -202,33 +213,4 @@ def shift_birth_datetime(birth_datetime, year_shift) birth_datetime.change(year: year_shift + birth_datetime.year) end end - - def obtain_ticket_granting_ticket - # Retreive a (possibly) existing ticket granting ticket - ticket_granting_ticket = session[:vsac_tgt] - - # If the ticket granting ticket doesn't exist (or has expired), get a new one - if ticket_granting_ticket.nil? - # The user could open a second browser window and remove their ticket_granting_ticket in the session after they - # prepared a measure upload assuming ticket_granting_ticket in the session in the first tab - - # First make sure we have credentials to attempt getting a ticket with. Throw an error if there are no credentials. - if params[:vsac_api_key].nil? - raise Util::VSAC::VSACNoCredentialsError.new - end - - # Retrieve a new ticket granting ticket by creating the api class. - api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: params[:vsac_api_key]) - ticket_granting_ticket = api.ticket_granting_ticket - - # Create a new ticket granting ticket session variable - session[:vsac_tgt] = ticket_granting_ticket - return ticket_granting_ticket - - # If it does exist, let the api test it - else - api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], ticket_granting_ticket: ticket_granting_ticket) - return api.ticket_granting_ticket - end - end end diff --git a/app/controllers/vsac_util_controller.rb b/app/controllers/vsac_util_controller.rb index 32c439f51..1a1734bc0 100644 --- a/app/controllers/vsac_util_controller.rb +++ b/app/controllers/vsac_util_controller.rb @@ -51,26 +51,20 @@ def program_release_names ## # GET /vsac_util/auth_valid # - # Gets the status of the ticket_granting_ticket in the session. Returns JSON: - # { valid: boolean, expires: DateTime } + # Gets the status of the API KEY in the session. Returns JSON: + # { valid: boolean } def auth_valid - # If VSAC TGT is still valid, return its expiration date/time - ticket_granting_ticket = session[:vsac_tgt] + vsac_api_key = session[:vsac_api_key] - # If there is no VSAC ticket granting ticket then return false. - if ticket_granting_ticket.nil? || ticket_granting_ticket.empty? - session[:vsac_tgt] = nil - render :json => {valid: false} - - # If it exists then check it using the API + if vsac_api_key.nil? || vsac_api_key.empty? + session[:vsac_api_key] = nil + render :json => {valid:false} else begin - Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], ticket_granting_ticket: ticket_granting_ticket) - render :json => {valid: true, expires: ticket_granting_ticket[:expires]} - - # API will throw an error if it has expired - rescue Util::VSAC::VSACTicketExpiredError - session[:vsac_tgt] = nil + Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: vsac_api_key) + render :json => {valid: true} + rescue Util::VSAC::VSACInvalidCredentialsError + session[:vsac_api_key] = nil render :json => {valid: false} end end @@ -79,10 +73,10 @@ def auth_valid ## # POST /vsac_util/auth_expire # - # Dumps the ticket_granting_ticket in the user session if there is one. Always returns JSON {}. + # Sets the vsac_api_key in the user session to nil. Always returns JSON {}. def auth_expire # Force expire the VSAC session - session[:vsac_tgt] = nil + session[:vsac_api_key] = nil render :json => {} end end diff --git a/app/helpers/measure_helper.rb b/app/helpers/measure_helper.rb index d3f647c81..c2db2edfb 100644 --- a/app/helpers/measure_helper.rb +++ b/app/helpers/measure_helper.rb @@ -256,11 +256,9 @@ def retrieve_vasc_options(params, get_defaults_from_vsac = false) end def build_vs_loader(params, get_defaults_from_vsac) - vsac_tgt_object = {ticket: params[:vsac_tgt], expires: Time.at(params[:vsac_tgt_expires_at].to_i)} if params[:vsac_tgt].present? && params[:vsac_tgt_expires_at].present? - - return Measures::VSACValueSetLoader.new( + Measures::VSACValueSetLoader.new( options: retrieve_vasc_options(params, get_defaults_from_vsac), - ticket_granting_ticket: vsac_tgt_object + vsac_api_key: params[:vsac_api_key] ) end diff --git a/config/application.rb b/config/application.rb index b07261501..1cf64529e 100644 --- a/config/application.rb +++ b/config/application.rb @@ -40,11 +40,13 @@ class Application < Rails::Application # Configure the default encoding used in templates for Ruby 1.9. config.encoding = "utf-8" - Rails.logger = Logger.new(STDOUT) - Rails.logger.formatter = proc do |severity, datetime, progname, msg| + # Configure log formatter + logger = Logger.new(STDOUT) + logger.formatter = proc do |severity, datetime, progname, msg| date_format = datetime.strftime("%Y-%m-%d %H:%M:%S") "#{date_format} [#{severity}] - #{msg}'\n" end + Rails.logger = ActiveSupport::TaggedLogging.new(logger) config.log_level = :info @@ -53,6 +55,9 @@ class Application < Rails::Application config.filter_parameters += [:vsac_api_key] config.filter_parameters += [:api_key] + # Configure log tags that will apply to all log entries + config.log_tags = [:request_id] + # Enable escaping HTML in JSON. config.active_support.escape_html_entities_in_json = true diff --git a/config/bonnie.yml b/config/bonnie.yml index 22129b32d..5a246a9de 100644 --- a/config/bonnie.yml +++ b/config/bonnie.yml @@ -1,5 +1,5 @@ defaults: &defaults - version: 5.1.4 + version: 5.1.5 enable_logging: true enable_rationale: true check_crosswalk: false diff --git a/doc/apipie_examples.json b/doc/apipie_examples.json index 0d02a6468..410456fb5 100644 --- a/doc/apipie_examples.json +++ b/doc/apipie_examples.json @@ -326,654 +326,405 @@ "measures#create": [ { "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" - }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "eh", - "calculation_type": "episode" - }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", + "vsac_query_measure_defined": "false", "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "eh", + "measure_file": "", "calculation_type": "episode", - "hqmf_set_id": "4DC3E7AA-8777-4749-A1E4-37E942036076" - }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "calculate_sdes": "true" }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "measure_file": "", - "measure_type": "eh", - "calculation_type": "episode" - }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "calculation_type": "episode", - "measure_file": "", - "measure_type": "eh" + "response_data": { + "status": "success", + "url": "/api_v1/measures/FA75DE85-A934-45D7-A2F7-C700A756078B" }, - "response_data": "You are being redirected.", - "code": "302", + "code": "200", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { + "vsac_api_key": "vcrpass", "vsac_query_type": "profile", "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", "measure_file": "", - "measure_type": "ep", "calculation_type": "patient" }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "response_data": { + "status": "success", + "url": "/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076" }, - "response_data": "You are being redirected.", - "code": "302", + "code": "200", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { + "vsac_api_key": "testApi", "vsac_query_type": "profile", "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", + "measure_file": "", "calculation_type": "patient" }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "response_data": { + "status": "success", + "url": "/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076" }, - "response_data": "You are being redirected.", - "code": "302", + "code": "200", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" - }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { "vsac_query_type": "profile", "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "measure_file": "", + "calculation_type": "episode" }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "response_data": { + "status": "error", + "messages": "Measure loading process encountered error: The HQMF file references the following valuesets not present in the CQL: [\"2.16.840.1.113883.3.464.1003.106.12.1005\"]" }, - "response_data": "You are being redirected.", - "code": "302", + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", + "vsac_api_key": "vcrpass", + "vsac_query_type": "release", + "vsac_query_release": "Fake 1234", "vsac_query_measure_defined": "true", - "measure_file": "", - "hqmf_set_id": "3BBFC929-50C8-44B8-8D34-82BE75C08A70" + "measure_file": "", + "calculation_type": "episode" }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "response_data": { + "status": "error", + "messages": "VSAC value set (2.16.840.1.113883.3.117.1.7.1.87) not found or is empty. Please verify that you are using the correct profile or release and have VSAC authoring permissions if you are requesting draft value sets." }, - "response_data": "You are being redirected.", - "code": "302", + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", + "vsac_api_key": "oof", "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "calculation_type": "episode" }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "hqmf_set_id": "4DC3E7AA-8777-4749-A1E4-37E942036076" + "response_data": { + "status": "error", + "messages": "VSAC credentials were invalid." }, - "response_data": "You are being redirected.", - "code": "302", + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "measure_file": "", + "calculation_type": "episode", + "vsac_api_key": "vcrpass" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "error", + "messages": "The measure could not be loaded, Bonnie has encountered an error while trying to load the measure." + }, + "code": "500", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "true", - "vsac_query_measure_defined": "false", "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "vsac_query_type": "release", + "vsac_query_measure_defined": "true", + "measure_file": "", + "calculation_type": "episode", + "calculate_sdes": "false" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "success", + "url": "/api_v1/measures/FA75DE85-A934-45D7-A2F7-C700A756078B" + }, + "code": "200", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "release", - "vsac_query_program": "CMS eCQM", - "vsac_query_release": "eCQM Update 2018 EP-EC and EH", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "measure_file": "", + "calculation_type": "addition", + "vsac_api_key": "oof", + "vsac_query_type": "profile" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "error", + "messages": "Invalid parameter 'calculation_type': Must be one of: episode, patient." + }, + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "measure_file": "" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "error", + "messages": "Missing parameter: calculation_type" + }, + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "false", - "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "measure_file": "not-a-file.gif", + "calculation_type": "episode", + "vsac_api_key": "oof", + "vsac_query_type": "profile" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "error", + "messages": "Invalid parameter 'measure_file': Must be a valid MAT Export." + }, + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "true", - "vsac_api_key": "badkey", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "measure_file": "", + "calculation_type": "episode", + "vsac_api_key": "oof", + "vsac_query_type": "profile" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "error", + "messages": "Invalid parameter 'measure_file': Must be a valid MAT Export." + }, + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "true", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "calculation_type": "episode" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "error", + "messages": "Missing parameter: measure_file" + }, + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "profile", - "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "true", - "vsac_query_measure_defined": "false", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "measure_file": "", + "calculation_type": "episode", + "vsac_api_key": "oof", + "vsac_query_type": "profile" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "error", + "messages": "Invalid parameter 'measure_file': Must be a valid MAT Export." + }, + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { - "vsac_query_type": "release", - "vsac_query_profile": "Latest eCQM", - "vsac_query_release": "Fake 1234", - "vsac_query_measure_defined": "false", "vsac_api_key": "vcrpass", + "vsac_query_type": "profile", + "vsac_query_profile": "Latest eCQM", + "vsac_query_measure_defined": "true", "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" + "calculation_type": "episode", + "population_titles": [ + "First Pop", + "First Strat", + "Second Strat", + "Third Strat" + ] }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "success", + "url": "/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076" + }, + "code": "200", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { + "vsac_api_key": "vcrpass", "vsac_query_type": "profile", "vsac_query_profile": "Latest eCQM", - "vsac_query_include_draft": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", - "calculation_type": "patient" - }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "measure_file": "", - "measure_type": "eh", + "vsac_query_measure_defined": "true", + "measure_file": "", "calculation_type": "episode", - "vsac_api_key": "vcrpass" + "population_titles": [ + "First Pop", + "First Strat", + "Second Strat", + "Third Strat" + ] }, - "response_data": "You are being redirected.", - "code": "302", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "POST", - "path": "/measures", - "versions": [ - - ], - "query": null, - "request_data": { - "measure_file": "", - "measure_type": "eh", - "calculation_type": "episode" + "response_data": { + "status": "success", + "url": "/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076" }, - "response_data": "You are being redirected.", - "code": "302", + "code": "200", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { + "vsac_api_key": "vcrpass", "vsac_query_type": "profile", "vsac_query_profile": "Latest eCQM", "vsac_query_include_draft": "false", "vsac_query_measure_defined": "true", - "vsac_api_key": "vcrpass", - "measure_file": "", - "measure_type": "ep", + "measure_file": "", "calculation_type": "patient" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "error", + "messages": "Measure loading process encountered error: Elm library AnnualWellnessAssessmentPreventiveCareScreeningforFallsRisk referenced but not found." + }, + "code": "400", "show_in_doc": 1, "recorded": true }, { "verb": "POST", - "path": "/measures", + "path": "/api_v1/measures", "versions": [ - + "1" ], "query": null, "request_data": { + "vsac_api_key": "vcrpass", "vsac_query_type": "profile", "vsac_query_profile": "Latest eCQM", "vsac_query_include_draft": "false", "vsac_query_measure_defined": "true", - "measure_file": "", - "measure_type": "ep", + "measure_file": "", "calculation_type": "patient" }, - "response_data": "You are being redirected.", - "code": "302", + "response_data": { + "status": "error", + "messages": "Invalid parameter 'measure_file': Must be a valid MAT Export." + }, + "code": "400", "show_in_doc": 1, "recorded": true } @@ -989,7 +740,7 @@ "request_data": { }, "response_data": { - "_id": "609d8390b789027a3282dbe0", + "_id": "64f23455e77bbf196fc964e1", "calculate_sdes": null, "calculation_method": "PATIENT", "cms_id": "CMS903v0", @@ -1001,7 +752,7 @@ "composite_hqmf_set_id": null, "cql_libraries": [ { - "_id": "609d8390b789027a3282dbe1", + "_id": "64f23456e77bbf196fc964e2", "cql": "library LikeCMS32 version '0.0.003'\n\n/*================================\neCQM ID: CMS902\nPatient-based: No\nScoring: continuous variable\nCMS Program Group: Eligible Hospitals (EH)\n================================*/\r\n\r\nusing QDM version '5.5'\r\n\r\ncodesystem \"SNOMEDCT\": 'urn:oid:2.16.840.1.113883.6.96'\r\n\r\nvalueset \"Discharge To Acute Care Facility\": 'urn:oid:2.16.840.1.113883.3.117.1.7.1.87'\r\nvalueset \"Emergency Department Visit\": 'urn:oid:2.16.840.1.113883.3.117.1.7.1.292'\r\nvalueset \"Encounter Inpatient\": 'urn:oid:2.16.840.1.113883.3.666.5.307'\r\nvalueset \"Ethnicity\": 'urn:oid:2.16.840.1.114222.4.11.837'\r\nvalueset \"Observation Services\": 'urn:oid:2.16.840.1.113762.1.4.1111.143'\r\nvalueset \"ONC Administrative Sex\": 'urn:oid:2.16.840.1.113762.1.4.1'\r\nvalueset \"Payer\": 'urn:oid:2.16.840.1.114222.4.11.3591'\r\nvalueset \"Psychiatric/Mental Health Diagnosis\": 'urn:oid:2.16.840.1.113883.3.117.1.7.1.299'\r\nvalueset \"Race\": 'urn:oid:2.16.840.1.114222.4.11.836'\r\n\r\ncode \"Patient deceased during stay (discharge status = dead) (finding)\": '371828006' from \"SNOMEDCT\" display 'Patient deceased during stay (discharge status = dead) (finding)'\r\n\r\nparameter \"Measurement Period\" Interval\r\n\r\ncontext Patient\r\n\r\ndefine \"SDE Ethnicity\":\r\n [\"Patient Characteristic Ethnicity\": \"Ethnicity\"]\r\n\r\ndefine \"SDE Payer\":\r\n [\"Patient Characteristic Payer\": \"Payer\"]\r\n\r\ndefine \"SDE Race\":\r\n [\"Patient Characteristic Race\": \"Race\"]\r\n\r\ndefine \"SDE Sex\":\r\n [\"Patient Characteristic Sex\": \"ONC Administrative Sex\"]\r\n\r\ndefine \"Emergency Department ED Visit\":\r\n [\"Encounter, Performed\": \"Emergency Department Visit\"] EDVisit\r\n where EDVisit.relevantPeriod during \"Measurement Period\"\r\n\r\ndefine \"Strat2\":\r\n \"Emergency Department ED Visit\" EDVisit\r\n where EDVisit.dischargeDisposition in \"Discharge To Acute Care Facility\"\r\n\r\ndefine \"Initial Population\":\r\n [\"Encounter, Performed\": \"Emergency Department Visit\"] EDVisit\r\n where EDVisit.relevantPeriod during \"Measurement Period\"\r\n\r\ndefine \"Measure Population\":\r\n \"Initial Population\" EDVisit\r\n where \"Measure Observation\"(EDVisit)is not null\r\n\r\ndefine \"Measure Population Exclusions\":\r\n ( \"Emergency Department ED Visit\" EDVisit\r\n where EDVisit.dischargeDisposition ~ \"Patient deceased during stay (discharge status = dead) (finding)\"\r\n )\r\n union ( \"Emergency Department ED Visit\" EDVisit\r\n with [\"Encounter, Performed\": \"Encounter Inpatient\"] Encounter\r\n such that EDVisit.relevantPeriod ends 1 hour or less before or on start of Encounter.relevantPeriod\r\n )\r\n\r\ndefine \"Strat1\":\r\n \"Emergency Department ED Visit\" EDVisit\r\n where exists ( EDVisit.diagnoses Diag\r\n where Diag.rank = 1\r\n and Diag.code in \"Psychiatric/Mental Health Diagnosis\"\r\n )\r\n\r\ndefine \"Strat3\":\r\n \"Emergency Department ED Visit\" EDVisit\r\n let DiagCode: GetPrincipalDiagnosisCode(EDVisit)\r\n where ( DiagCode is null\r\n or not ( DiagCode in \"Psychiatric/Mental Health Diagnosis\" )\r\n )\r\n and not ( EDVisit.dischargeDisposition in \"Discharge To Acute Care Facility\" )\r\n\r\ndefine function \"Observation Services Order\"(Enc \"Encounter, Performed\"):\r\n Last([\"Encounter, Order\": \"Observation Services\"] ObservationOrder\r\n where ObservationOrder.authorDatetime during Enc.relevantPeriod\r\n sort by authorDatetime\r\n )\r\n\r\ndefine function \"Departure Time\"(Enc \"Encounter, Performed\"):\r\n Last(Enc.facilityLocations Location\r\n return \r\n end of Location.locationPeriod\r\n sort ascending\r\n )\r\n\r\ndefine function \"Measure Observation\"(Enc \"Encounter, Performed\"):\r\n \"Arrival to Observation Order or Departure Time\"(Enc)\r\n\r\ndefine function \"ArrivalTime\"(Enc \"Encounter, Performed\"):\r\n First(Enc.facilityLocations Location\r\n return start of Location.locationPeriod\r\n sort ascending\r\n )\r\n\r\ndefine function \"Arrival to Observation Order or Departure Time\"(Enc \"Encounter, Performed\"):\r\n duration in minutes of Interval[\"ArrivalTime\"(Enc), Coalesce(\"Observation Services Order\"(Enc).authorDatetime, \"Departure Time\"(Enc))]\r\n\r\ndefine function \"GetPrincipalDiagnosisCode\"(Enc \"Encounter, Performed\"):\r\n singleton from ( Enc.diagnoses Diag\r\n where Diag.rank = 1\r\n return Diag.code\r\n )", "elm": { "library": { @@ -7976,35 +7727,35 @@ "library_version": "0.0.003", "statement_dependencies": [ { - "_id": "609d8390b789027a3282dbe2", + "_id": "64f23456e77bbf196fc964e3", "statement_name": "Patient" }, { - "_id": "609d8390b789027a3282dbe3", + "_id": "64f23456e77bbf196fc964e4", "statement_name": "SDE Ethnicity" }, { - "_id": "609d8390b789027a3282dbe4", + "_id": "64f23456e77bbf196fc964e5", "statement_name": "SDE Payer" }, { - "_id": "609d8390b789027a3282dbe5", + "_id": "64f23456e77bbf196fc964e6", "statement_name": "SDE Race" }, { - "_id": "609d8390b789027a3282dbe6", + "_id": "64f23456e77bbf196fc964e7", "statement_name": "SDE Sex" }, { - "_id": "609d8390b789027a3282dbe7", + "_id": "64f23456e77bbf196fc964e8", "statement_name": "Emergency Department ED Visit" }, { - "_id": "609d8390b789027a3282dbe8", + "_id": "64f23456e77bbf196fc964e9", "statement_name": "Strat2", "statement_references": [ { - "_id": "609d8390b789027a3282dbe9", + "_id": "64f23456e77bbf196fc964ea", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "Emergency Department ED Visit" @@ -8012,39 +7763,39 @@ ] }, { - "_id": "609d8390b789027a3282dbea", + "_id": "64f23456e77bbf196fc964eb", "statement_name": "Initial Population" }, { - "_id": "609d8390b789027a3282dbeb", + "_id": "64f23456e77bbf196fc964ec", "statement_name": "ArrivalTime" }, { - "_id": "609d8390b789027a3282dbec", + "_id": "64f23456e77bbf196fc964ed", "statement_name": "Observation Services Order" }, { - "_id": "609d8390b789027a3282dbed", + "_id": "64f23456e77bbf196fc964ee", "statement_name": "Departure Time" }, { - "_id": "609d8390b789027a3282dbee", + "_id": "64f23456e77bbf196fc964ef", "statement_name": "Arrival to Observation Order or Departure Time", "statement_references": [ { - "_id": "609d8390b789027a3282dbef", + "_id": "64f23456e77bbf196fc964f0", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "ArrivalTime" }, { - "_id": "609d8390b789027a3282dbf0", + "_id": "64f23456e77bbf196fc964f1", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "Observation Services Order" }, { - "_id": "609d8390b789027a3282dbf1", + "_id": "64f23456e77bbf196fc964f2", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "Departure Time" @@ -8052,11 +7803,11 @@ ] }, { - "_id": "609d8390b789027a3282dbf2", + "_id": "64f23456e77bbf196fc964f3", "statement_name": "Measure Observation", "statement_references": [ { - "_id": "609d8390b789027a3282dbf3", + "_id": "64f23456e77bbf196fc964f4", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "Arrival to Observation Order or Departure Time" @@ -8064,17 +7815,17 @@ ] }, { - "_id": "609d8390b789027a3282dbf4", + "_id": "64f23456e77bbf196fc964f5", "statement_name": "Measure Population", "statement_references": [ { - "_id": "609d8390b789027a3282dbf5", + "_id": "64f23456e77bbf196fc964f6", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "Initial Population" }, { - "_id": "609d8390b789027a3282dbf6", + "_id": "64f23456e77bbf196fc964f7", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "Measure Observation" @@ -8082,11 +7833,11 @@ ] }, { - "_id": "609d8390b789027a3282dbf7", + "_id": "64f23456e77bbf196fc964f8", "statement_name": "Measure Population Exclusions", "statement_references": [ { - "_id": "609d8390b789027a3282dbf8", + "_id": "64f23456e77bbf196fc964f9", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "Emergency Department ED Visit" @@ -8094,11 +7845,11 @@ ] }, { - "_id": "609d8390b789027a3282dbf9", + "_id": "64f23456e77bbf196fc964fa", "statement_name": "Strat1", "statement_references": [ { - "_id": "609d8390b789027a3282dbfa", + "_id": "64f23456e77bbf196fc964fb", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "Emergency Department ED Visit" @@ -8106,21 +7857,21 @@ ] }, { - "_id": "609d8390b789027a3282dbfb", + "_id": "64f23456e77bbf196fc964fc", "statement_name": "GetPrincipalDiagnosisCode" }, { - "_id": "609d8390b789027a3282dbfc", + "_id": "64f23456e77bbf196fc964fd", "statement_name": "Strat3", "statement_references": [ { - "_id": "609d8390b789027a3282dbfd", + "_id": "64f23456e77bbf196fc964fe", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "Emergency Department ED Visit" }, { - "_id": "609d8390b789027a3282dbfe", + "_id": "64f23456e77bbf196fc964ff", "hqmf_id": null, "library_name": "LikeCMS32", "statement_name": "GetPrincipalDiagnosisCode" @@ -8130,7 +7881,7 @@ ] } ], - "created_at": "2021-05-13T19:52:48.866Z", + "created_at": "2023-09-01T18:58:30.005Z", "description": "Testing Bonnie's ability to process CV measures", "group_id": "501fdba3044a111b98000001", "hqmf_id": "40280382667FECC30167190FAE723AAE", @@ -8589,20 +8340,20 @@ }, "population_sets": [ { - "_id": "609d8390b789027a3282dc06", + "_id": "64f23456e77bbf196fc96507", "observations": [ { - "_id": "609d8390b789027a3282dc15", + "_id": "64f23456e77bbf196fc96516", "aggregation_type": "MEDIAN", "hqmf_id": "558EB897-E657-4A3F-945A-313775CE2C89", "observation_function": { - "_id": "609d8390b789027a3282dc16", + "_id": "64f23456e77bbf196fc96517", "hqmf_id": "558EB897-E657-4A3F-945A-313775CE2C89", "library_name": "LikeCMS32", "statement_name": "Measure Observation" }, "observation_parameter": { - "_id": "609d8390b789027a3282dc17", + "_id": "64f23456e77bbf196fc96518", "hqmf_id": "558EB897-E657-4A3F-945A-313775CE2C89", "library_name": "LikeCMS32", "statement_name": "Measure Population" @@ -8612,31 +8363,31 @@ "population_set_id": "PopulationSet_1", "populations": { "IPP": { - "_id": "609d8390b789027a3282dc08", + "_id": "64f23456e77bbf196fc96509", "hqmf_id": "D5234DDF-B2DF-4D0E-B822-C6C9A1ACB4B8", "library_name": "LikeCMS32", "statement_name": "Initial Population" }, "MSRPOPL": { - "_id": "609d8390b789027a3282dc09", + "_id": "64f23456e77bbf196fc9650a", "hqmf_id": "665465ED-0573-406B-9A3A-A47D77C4C6C6", "library_name": "LikeCMS32", "statement_name": "Measure Population" }, "MSRPOPLEX": { - "_id": "609d8390b789027a3282dc0a", + "_id": "64f23456e77bbf196fc9650b", "hqmf_id": "CD78562F-E2C8-4792-A634-37A0DACC3E28", "library_name": "LikeCMS32", "statement_name": "Measure Population Exclusions" }, - "_id": "609d8390b789027a3282dc07" + "_id": "64f23456e77bbf196fc96508" }, "stratifications": [ { - "_id": "609d8390b789027a3282dc0b", + "_id": "64f23456e77bbf196fc9650c", "hqmf_id": "429368C4-06ED-4729-A52E-BC5A56F3B0D7", "statement": { - "_id": "609d8390b789027a3282dc0c", + "_id": "64f23456e77bbf196fc9650d", "hqmf_id": "429368C4-06ED-4729-A52E-BC5A56F3B0D7", "library_name": "LikeCMS32", "statement_name": "Strat1" @@ -8645,10 +8396,10 @@ "title": "PopSet1 Stratification 1" }, { - "_id": "609d8390b789027a3282dc0d", + "_id": "64f23456e77bbf196fc9650e", "hqmf_id": "F0BA095E-AD2E-4A05-A19F-A461835126B9", "statement": { - "_id": "609d8390b789027a3282dc0e", + "_id": "64f23456e77bbf196fc9650f", "hqmf_id": "F0BA095E-AD2E-4A05-A19F-A461835126B9", "library_name": "LikeCMS32", "statement_name": "Strat2" @@ -8657,10 +8408,10 @@ "title": "PopSet1 Stratification 2" }, { - "_id": "609d8390b789027a3282dc0f", + "_id": "64f23456e77bbf196fc96510", "hqmf_id": "3B414F16-D957-4D5B-83A8-B49362FB2C69", "statement": { - "_id": "609d8390b789027a3282dc10", + "_id": "64f23456e77bbf196fc96511", "hqmf_id": "3B414F16-D957-4D5B-83A8-B49362FB2C69", "library_name": "LikeCMS32", "statement_name": "Strat3" @@ -8671,25 +8422,25 @@ ], "supplemental_data_elements": [ { - "_id": "609d8390b789027a3282dc11", + "_id": "64f23456e77bbf196fc96512", "hqmf_id": "036572F4-6266-4AB2-805D-40E39F946958", "library_name": "LikeCMS32", "statement_name": "SDE Ethnicity" }, { - "_id": "609d8390b789027a3282dc12", + "_id": "64f23456e77bbf196fc96513", "hqmf_id": "0B26AB75-BD8F-42C7-9BD3-F1A1450C8A50", "library_name": "LikeCMS32", "statement_name": "SDE Payer" }, { - "_id": "609d8390b789027a3282dc13", + "_id": "64f23456e77bbf196fc96514", "hqmf_id": "AFF35AAE-7E41-42A2-8812-8E01747C20C2", "library_name": "LikeCMS32", "statement_name": "SDE Race" }, { - "_id": "609d8390b789027a3282dc14", + "_id": "64f23456e77bbf196fc96515", "hqmf_id": "39B95513-56D2-40D5-AD3B-FD9938F8728D", "library_name": "LikeCMS32", "statement_name": "SDE Sex" @@ -8700,7 +8451,7 @@ ], "source_data_criteria": [ { - "_id": "609d8390b789027a3282dbff", + "_id": "64f23456e77bbf196fc96500", "admissionSource": null, "authorDatetime": null, "clazz": null, @@ -8715,7 +8466,7 @@ ], "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "id": "609d8390b789027a3282dbff", + "id": "64f23456e77bbf196fc96500", "lengthOfStay": null, "priority": null, "qdmCategory": "encounter", @@ -8726,14 +8477,14 @@ "relevantPeriod": null }, { - "_id": "609d8390b789027a3282dc00", + "_id": "64f23456e77bbf196fc96501", "codeListId": "2.16.840.1.114222.4.11.3591", "dataElementCodes": [ ], "description": "Patient Characteristic Payer: Payer", "hqmfOid": "2.16.840.1.113883.10.20.28.4.58", - "id": "609d8390b789027a3282dc00", + "id": "64f23456e77bbf196fc96501", "qdmCategory": "patient_characteristic", "qdmStatus": "payer", "qdmTitle": "Patient Characteristic Payer", @@ -8741,49 +8492,49 @@ "relevantPeriod": null }, { - "_id": "609d8390b789027a3282dc01", + "_id": "64f23456e77bbf196fc96502", "codeListId": "2.16.840.1.113762.1.4.1", "dataElementCodes": [ ], "description": "Patient Characteristic Sex: ONCAdministrativeSex", "hqmfOid": "2.16.840.1.113883.10.20.28.4.55", - "id": "609d8390b789027a3282dc01", + "id": "64f23456e77bbf196fc96502", "qdmCategory": "patient_characteristic", "qdmStatus": "gender", "qdmTitle": "Patient Characteristic Sex", "qdmVersion": "5.6" }, { - "_id": "609d8390b789027a3282dc02", + "_id": "64f23456e77bbf196fc96503", "codeListId": "2.16.840.1.114222.4.11.837", "dataElementCodes": [ ], "description": "Patient Characteristic Ethnicity: Ethnicity", "hqmfOid": "2.16.840.1.113883.10.20.28.4.56", - "id": "609d8390b789027a3282dc02", + "id": "64f23456e77bbf196fc96503", "qdmCategory": "patient_characteristic", "qdmStatus": "ethnicity", "qdmTitle": "Patient Characteristic Ethnicity", "qdmVersion": "5.6" }, { - "_id": "609d8390b789027a3282dc03", + "_id": "64f23456e77bbf196fc96504", "codeListId": "2.16.840.1.114222.4.11.836", "dataElementCodes": [ ], "description": "Patient Characteristic Race: Race", "hqmfOid": "2.16.840.1.113883.10.20.28.4.59", - "id": "609d8390b789027a3282dc03", + "id": "64f23456e77bbf196fc96504", "qdmCategory": "patient_characteristic", "qdmStatus": "race", "qdmTitle": "Patient Characteristic Race", "qdmVersion": "5.6" }, { - "_id": "609d8390b789027a3282dc04", + "_id": "64f23456e77bbf196fc96505", "authorDatetime": null, "codeListId": "2.16.840.1.113762.1.4.1111.143", "dataElementCodes": [ @@ -8792,7 +8543,7 @@ "description": "Encounter, Order: ObservationServices", "facilityLocation": null, "hqmfOid": "2.16.840.1.113883.10.20.28.4.27", - "id": "609d8390b789027a3282dc04", + "id": "64f23456e77bbf196fc96505", "negationRationale": null, "priority": null, "qdmCategory": "encounter", @@ -8802,7 +8553,7 @@ "reason": null }, { - "_id": "609d8390b789027a3282dc05", + "_id": "64f23456e77bbf196fc96506", "admissionSource": null, "authorDatetime": null, "clazz": null, @@ -8817,7 +8568,7 @@ ], "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "id": "609d8390b789027a3282dc05", + "id": "64f23456e77bbf196fc96506", "lengthOfStay": null, "priority": null, "qdmCategory": "encounter", @@ -8829,18 +8580,18 @@ } ], "title": "LikeCMS32", - "updated_at": "2021-05-13T19:52:48.866Z", + "updated_at": "2023-09-01T18:58:30.005Z", "value_set_ids": [ - "609d8390b789027a3282dbd5", - "609d8390b789027a3282dbd6", - "609d8390b789027a3282dbd7", - "609d8390b789027a3282dbd8", - "609d8390b789027a3282dbd9", - "609d8390b789027a3282dbda", - "609d8390b789027a3282dbdb", - "609d8390b789027a3282dbdc", - "609d8390b789027a3282dbdd", - "609d8390b789027a3282dbde" + "64f23455e77bbf196fc964d6", + "64f23455e77bbf196fc964d7", + "64f23455e77bbf196fc964d8", + "64f23455e77bbf196fc964d9", + "64f23455e77bbf196fc964da", + "64f23455e77bbf196fc964db", + "64f23455e77bbf196fc964dc", + "64f23455e77bbf196fc964dd", + "64f23455e77bbf196fc964de", + "64f23455e77bbf196fc964df" ] }, "code": "200", @@ -8857,7 +8608,7 @@ "request_data": { }, "response_data": { - "_id": "609d8397b789027a3282edf8", + "_id": "64f23459e77bbf196fc976f9", "calculate_sdes": null, "calculation_method": "PATIENT", "cms_id": "CMS158v6", @@ -8869,7 +8620,7 @@ "composite_hqmf_set_id": null, "cql_libraries": [ { - "_id": "609d8397b789027a3282edf9", + "_id": "64f23459e77bbf196fc976fa", "cql": "library PregnantwomenthathadHBsAgtesting version '6.0.001'\r\n\r\nusing QDM version '5.3'\r\n\r\nvalueset \"ONC Administrative Sex\": 'urn:oid:2.16.840.1.113762.1.4.1'\r\nvalueset \"Race\": 'urn:oid:2.16.840.1.114222.4.11.836'\r\nvalueset \"Ethnicity\": 'urn:oid:2.16.840.1.114222.4.11.837'\r\nvalueset \"Payer\": 'urn:oid:2.16.840.1.114222.4.11.3591'\r\nvalueset \"Delivery - Diagnosis\": 'urn:oid:2.16.840.1.113883.3.67.1.101.1.278'\r\nvalueset \"Delivery - Procedure\": 'urn:oid:2.16.840.1.113762.1.4.1078.5'\r\nvalueset \"Female\": 'urn:oid:2.16.840.1.113883.3.560.100.2'\r\nvalueset \"HBsAg\": 'urn:oid:2.16.840.1.113883.3.67.1.101.1.279'\r\nvalueset \"Hepatitis B\": 'urn:oid:2.16.840.1.113883.3.67.1.101.1.269'\r\n\r\nparameter \"Measurement Period\" Interval\r\n\r\ncontext Patient\r\n\r\ndefine \"SDE Ethnicity\":\r\n\t[\"Patient Characteristic Ethnicity\": \"Ethnicity\"]\r\n\r\ndefine \"SDE Payer\":\r\n\t[\"Patient Characteristic Payer\": \"Payer\"]\r\n\r\ndefine \"SDE Race\":\r\n\t[\"Patient Characteristic Race\": \"Race\"]\r\n\r\ndefine \"SDE Sex\":\r\n\t[\"Patient Characteristic Sex\": \"ONC Administrative Sex\"]\r\n\r\ndefine \"Most Recent Delivery\":\r\n\tLast([\"Procedure, Performed\": \"Delivery - Procedure\"] DeliveryProcedure\r\n\t\t\twhere DeliveryProcedure.relevantPeriod during \"Measurement Period\"\r\n\t\t\tsort by start of relevantPeriod\r\n\t)\r\n\r\ndefine \"Denominator Exceptions\":\r\n\texists ( [\"Diagnosis\": \"Hepatitis B\"] HepB\r\n\t\t\twith \"Most Recent Delivery Overlaps Diagnosis\" DeliveryOverlapsDiagnosis\r\n\t\t\t\tsuch that HepB.prevalencePeriod starts 365 days or less before start of DeliveryOverlapsDiagnosis.relevantPeriod\r\n\t\t\t\t\tor HepB.prevalencePeriod ends 365 days or less before start of DeliveryOverlapsDiagnosis.relevantPeriod\r\n\t)\r\n\r\ndefine \"Most Recent Delivery Overlaps Diagnosis\":\r\n\t\"Most Recent Delivery\" MostRecentDelivery\r\n\t\twhere exists ( [\"Diagnosis\": \"Delivery - Diagnosis\"] DeliveryDiagnosis\r\n\t\t\t\twhere MostRecentDelivery.relevantPeriod overlaps DeliveryDiagnosis.prevalencePeriod\r\n\t\t)\r\n\r\ndefine \"Initial Population\":\r\n\t\"Most Recent Delivery Overlaps Diagnosis\" is not null\r\n\t\tand AgeInYearsAt(start of \"Measurement Period\")>= 12\r\n\t\tand exists ( [\"Patient Characteristic Sex\": \"Female\"] )\r\n\r\ndefine \"Numerator\":\r\n\texists ( [\"Laboratory Test, Performed\": \"HBsAg\"] LabTest\r\n\t\t\twith \"Most Recent Delivery Overlaps Diagnosis\" DeliveryOverlapsDiagnosis\r\n\t\t\t\tsuch that LabTest.relevantPeriod starts 280 days or less before start of DeliveryOverlapsDiagnosis.relevantPeriod\r\n\t)\r\n\r\ndefine \"Denominator\":\r\n\t\"Initial Population\"\r\n", "elm": { "library": { @@ -12722,35 +12473,35 @@ "library_version": "6.0.001", "statement_dependencies": [ { - "_id": "609d8397b789027a3282edfa", + "_id": "64f23459e77bbf196fc976fb", "statement_name": "Patient" }, { - "_id": "609d8397b789027a3282edfb", + "_id": "64f23459e77bbf196fc976fc", "statement_name": "SDE Ethnicity" }, { - "_id": "609d8397b789027a3282edfc", + "_id": "64f23459e77bbf196fc976fd", "statement_name": "SDE Payer" }, { - "_id": "609d8397b789027a3282edfd", + "_id": "64f23459e77bbf196fc976fe", "statement_name": "SDE Race" }, { - "_id": "609d8397b789027a3282edfe", + "_id": "64f23459e77bbf196fc976ff", "statement_name": "SDE Sex" }, { - "_id": "609d8397b789027a3282edff", + "_id": "64f23459e77bbf196fc97700", "statement_name": "Most Recent Delivery" }, { - "_id": "609d8397b789027a3282ee00", + "_id": "64f23459e77bbf196fc97701", "statement_name": "Most Recent Delivery Overlaps Diagnosis", "statement_references": [ { - "_id": "609d8397b789027a3282ee01", + "_id": "64f23459e77bbf196fc97702", "hqmf_id": null, "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Most Recent Delivery" @@ -12758,11 +12509,11 @@ ] }, { - "_id": "609d8397b789027a3282ee02", + "_id": "64f23459e77bbf196fc97703", "statement_name": "Denominator Exceptions", "statement_references": [ { - "_id": "609d8397b789027a3282ee03", + "_id": "64f23459e77bbf196fc97704", "hqmf_id": null, "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Most Recent Delivery Overlaps Diagnosis" @@ -12770,17 +12521,17 @@ ] }, { - "_id": "609d8397b789027a3282ee04", + "_id": "64f23459e77bbf196fc97705", "statement_name": "Initial Population", "statement_references": [ { - "_id": "609d8397b789027a3282ee05", + "_id": "64f23459e77bbf196fc97706", "hqmf_id": null, "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Most Recent Delivery Overlaps Diagnosis" }, { - "_id": "609d8397b789027a3282ee06", + "_id": "64f23459e77bbf196fc97707", "hqmf_id": null, "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Patient" @@ -12788,11 +12539,11 @@ ] }, { - "_id": "609d8397b789027a3282ee07", + "_id": "64f23459e77bbf196fc97708", "statement_name": "Numerator", "statement_references": [ { - "_id": "609d8397b789027a3282ee08", + "_id": "64f23459e77bbf196fc97709", "hqmf_id": null, "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Most Recent Delivery Overlaps Diagnosis" @@ -12800,11 +12551,11 @@ ] }, { - "_id": "609d8397b789027a3282ee09", + "_id": "64f23459e77bbf196fc9770a", "statement_name": "Denominator", "statement_references": [ { - "_id": "609d8397b789027a3282ee0a", + "_id": "64f23459e77bbf196fc9770b", "hqmf_id": null, "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Initial Population" @@ -12814,7 +12565,7 @@ ] } ], - "created_at": "2021-05-13T19:52:55.568Z", + "created_at": "2023-09-01T18:58:33.492Z", "description": "This measure identifies pregnant women who had a HBsAg (hepatitis B) test during their pregnancy", "group_id": "501fdba3044a111b98000001", "hqmf_id": "40280382-5FA6-FE85-015F-B5969D1D0264", @@ -13301,56 +13052,56 @@ }, "population_sets": [ { - "_id": "609d8397b789027a3282ee14", + "_id": "64f23459e77bbf196fc97715", "population_set_id": "PopulationSet_1", "populations": { "DENEXCEP": { - "_id": "609d8397b789027a3282ee18", + "_id": "64f23459e77bbf196fc97719", "hqmf_id": "CA814520-4C34-40EE-8B75-E4CC17F826E4", "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Denominator Exceptions" }, "DENOM": { - "_id": "609d8397b789027a3282ee17", + "_id": "64f23459e77bbf196fc97718", "hqmf_id": "0D651BD8-1BC2-44DD-B939-D4668CBCF2F8", "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Denominator" }, "IPP": { - "_id": "609d8397b789027a3282ee16", + "_id": "64f23459e77bbf196fc97717", "hqmf_id": "D925905E-7C6A-4DAB-BAED-9BD0D30C17B4", "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Initial Population" }, "NUMER": { - "_id": "609d8397b789027a3282ee19", + "_id": "64f23459e77bbf196fc9771a", "hqmf_id": "6D406128-ADE1-4B45-826A-5850D297D405", "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "Numerator" }, - "_id": "609d8397b789027a3282ee15" + "_id": "64f23459e77bbf196fc97716" }, "supplemental_data_elements": [ { - "_id": "609d8397b789027a3282ee1a", + "_id": "64f23459e77bbf196fc9771b", "hqmf_id": "7EF068FD-5A9F-42BC-B438-1A8FB1512FC3", "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "SDE Ethnicity" }, { - "_id": "609d8397b789027a3282ee1b", + "_id": "64f23459e77bbf196fc9771c", "hqmf_id": "07375B30-66B1-4F43-8CAC-9E0159001B6D", "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "SDE Payer" }, { - "_id": "609d8397b789027a3282ee1c", + "_id": "64f23459e77bbf196fc9771d", "hqmf_id": "266B5ED6-F220-4FE7-B235-2EA3D1E480E1", "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "SDE Race" }, { - "_id": "609d8397b789027a3282ee1d", + "_id": "64f23459e77bbf196fc9771e", "hqmf_id": "54D8258B-F14A-4F4F-B2C8-4CDB5A4C81A2", "library_name": "PregnantwomenthathadHBsAgtesting", "statement_name": "SDE Sex" @@ -13361,14 +13112,14 @@ ], "source_data_criteria": [ { - "_id": "609d8397b789027a3282ee0b", + "_id": "64f23459e77bbf196fc9770c", "codeListId": "2.16.840.1.114222.4.11.3591", "dataElementCodes": [ ], "description": "Patient Characteristic Payer: Payer", "hqmfOid": "2.16.840.1.113883.10.20.28.4.58", - "id": "609d8397b789027a3282ee0b", + "id": "64f23459e77bbf196fc9770c", "qdmCategory": "patient_characteristic", "qdmStatus": "payer", "qdmTitle": "Patient Characteristic Payer", @@ -13376,49 +13127,49 @@ "relevantPeriod": null }, { - "_id": "609d8397b789027a3282ee0c", + "_id": "64f23459e77bbf196fc9770d", "codeListId": "2.16.840.1.114222.4.11.837", "dataElementCodes": [ ], "description": "Patient Characteristic Ethnicity: Ethnicity", "hqmfOid": "2.16.840.1.113883.10.20.28.4.56", - "id": "609d8397b789027a3282ee0c", + "id": "64f23459e77bbf196fc9770d", "qdmCategory": "patient_characteristic", "qdmStatus": "ethnicity", "qdmTitle": "Patient Characteristic Ethnicity", "qdmVersion": "5.6" }, { - "_id": "609d8397b789027a3282ee0d", + "_id": "64f23459e77bbf196fc9770e", "codeListId": "2.16.840.1.113762.1.4.1", "dataElementCodes": [ ], "description": "Patient Characteristic Sex: ONCAdministrativeSex", "hqmfOid": "2.16.840.1.113883.10.20.28.4.55", - "id": "609d8397b789027a3282ee0d", + "id": "64f23459e77bbf196fc9770e", "qdmCategory": "patient_characteristic", "qdmStatus": "gender", "qdmTitle": "Patient Characteristic Sex", "qdmVersion": "5.6" }, { - "_id": "609d8397b789027a3282ee0e", + "_id": "64f23459e77bbf196fc9770f", "codeListId": "2.16.840.1.114222.4.11.836", "dataElementCodes": [ ], "description": "Patient Characteristic Race: Race", "hqmfOid": "2.16.840.1.113883.10.20.28.4.59", - "id": "609d8397b789027a3282ee0e", + "id": "64f23459e77bbf196fc9770f", "qdmCategory": "patient_characteristic", "qdmStatus": "race", "qdmTitle": "Patient Characteristic Race", "qdmVersion": "5.6" }, { - "_id": "609d8397b789027a3282ee0f", + "_id": "64f23459e77bbf196fc97710", "anatomicalLocationSite": null, "authorDatetime": null, "codeListId": "2.16.840.1.113762.1.4.1078.5", @@ -13428,7 +13179,7 @@ ], "description": "Procedure, Performed: Delivery-Procedure", "hqmfOid": "2.16.840.1.113883.10.20.28.4.67", - "id": "609d8397b789027a3282ee0f", + "id": "64f23459e77bbf196fc97710", "incisionDatetime": null, "method": null, "negationRationale": null, @@ -13445,21 +13196,21 @@ "status": null }, { - "_id": "609d8397b789027a3282ee10", + "_id": "64f23459e77bbf196fc97711", "codeListId": "2.16.840.1.113883.3.560.100.2", "dataElementCodes": [ ], "description": "Patient Characteristic Sex: Female", "hqmfOid": "2.16.840.1.113883.10.20.28.4.55", - "id": "609d8397b789027a3282ee10", + "id": "64f23459e77bbf196fc97711", "qdmCategory": "patient_characteristic", "qdmStatus": "gender", "qdmTitle": "Patient Characteristic Sex", "qdmVersion": "5.6" }, { - "_id": "609d8397b789027a3282ee11", + "_id": "64f23459e77bbf196fc97712", "authorDatetime": null, "codeListId": "2.16.840.1.113883.3.67.1.101.1.279", "components": null, @@ -13468,7 +13219,7 @@ ], "description": "Laboratory Test, Performed: HBsAg", "hqmfOid": "2.16.840.1.113883.10.20.28.4.42", - "id": "609d8397b789027a3282ee11", + "id": "64f23459e77bbf196fc97712", "interpretation": null, "method": null, "negationRationale": null, @@ -13486,7 +13237,7 @@ "status": null }, { - "_id": "609d8397b789027a3282ee12", + "_id": "64f23459e77bbf196fc97713", "anatomicalLocationSite": null, "authorDatetime": null, "codeListId": "2.16.840.1.113883.3.67.1.101.1.278", @@ -13495,7 +13246,7 @@ ], "description": "Diagnosis: Delivery-Diagnosis", "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "id": "609d8397b789027a3282ee12", + "id": "64f23459e77bbf196fc97713", "prevalencePeriod": null, "qdmCategory": "condition", "qdmTitle": "Diagnosis", @@ -13504,7 +13255,7 @@ "severity": null }, { - "_id": "609d8397b789027a3282ee13", + "_id": "64f23459e77bbf196fc97714", "anatomicalLocationSite": null, "authorDatetime": null, "codeListId": "2.16.840.1.113883.3.67.1.101.1.269", @@ -13513,7 +13264,7 @@ ], "description": "Diagnosis: HepatitisB", "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "id": "609d8397b789027a3282ee13", + "id": "64f23459e77bbf196fc97714", "prevalencePeriod": null, "qdmCategory": "condition", "qdmTitle": "Diagnosis", @@ -13523,17 +13274,17 @@ } ], "title": "Pregnant women that had HBsAg testing", - "updated_at": "2021-05-13T19:52:55.568Z", + "updated_at": "2023-09-01T18:58:33.492Z", "value_set_ids": [ - "609d8397b789027a3282edee", - "609d8397b789027a3282edef", - "609d8397b789027a3282edf0", - "609d8397b789027a3282edf1", - "609d8397b789027a3282edf2", - "609d8397b789027a3282edf3", - "609d8397b789027a3282edf4", - "609d8397b789027a3282edf5", - "609d8397b789027a3282edf6" + "64f23459e77bbf196fc976ef", + "64f23459e77bbf196fc976f0", + "64f23459e77bbf196fc976f1", + "64f23459e77bbf196fc976f2", + "64f23459e77bbf196fc976f3", + "64f23459e77bbf196fc976f4", + "64f23459e77bbf196fc976f5", + "64f23459e77bbf196fc976f6", + "64f23459e77bbf196fc976f7" ] }, "code": "200", @@ -13575,43155 +13326,69 @@ ], "query": "", "request_data": null, - "response_data": null, - "code": "200", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "GET", - "path": "/api_v1/measures", - "versions": [ - "1" - ], - "query": "", - "request_data": null, - "response_data": [ - { - "_id": "7B2A9277-43DA-4D99-9BEE-6AC271A07747", - "cms_id": "CMS134v6", - "created_at": "2019-07-11T18:46:32.616Z", - "description": "The percentage of patients 18-75 years of age with diabetes who had a nephropathy screening test or evidence of nephropathy during the measurement period", - "hqmf_id": "40280382-5FA6-FE85-0160-0918E74D2075", - "hqmf_set_id": "7B2A9277-43DA-4D99-9BEE-6AC271A07747", - "hqmf_version_number": "0", - "title": "Diabetes: Medical Attention for Nephropathy", - "updated_at": "2019-07-11T18:46:32.616Z" - } - ], - "code": "200", - "show_in_doc": 1, - "recorded": true - } - ], - "measures#show": [ - { - "verb": "GET", - "path": "/measures", - "versions": [ - - ], - "query": "", - "request_data": null, - "response_data": { - "_id": "609d8393b789027a3282e441", - "title": "Test CMS 134", - "description": "The percentage of patients 18-75 years of age with diabetes who had a nephropathy screening test or evidence of nephropathy during the measurement period.", - "component_hqmf_set_ids": [ - - ], - "measure_scoring": "PROPORTION", - "calculation_method": "PATIENT", - "hqmf_id": "40280582-5C27-8179-015C-308B1F99003B", - "hqmf_set_id": "7B2A9277-43DA-4D99-9BEE-6AC271A07747", - "main_cql_library": "TestCMS134", - "hqmf_version_number": "5.1.008", - "cms_id": "CMS134v5", - "composite": false, - "component": false, - "calculate_sdes": null, - "value_set_ids": [ - "609d8393b789027a3282e424", - "609d8393b789027a3282e425", - "609d8393b789027a3282e426", - "609d8393b789027a3282e427", - "609d8393b789027a3282e428", - "609d8393b789027a3282e429", - "609d8393b789027a3282e42a", - "609d8393b789027a3282e42b", - "609d8393b789027a3282e42c", - "609d8393b789027a3282e42d", - "609d8393b789027a3282e42e", - "609d8393b789027a3282e42f", - "609d8393b789027a3282e430", - "609d8393b789027a3282e431", - "609d8393b789027a3282e432", - "609d8393b789027a3282e433", - "609d8393b789027a3282e434", - "609d8393b789027a3282e435", - "609d8393b789027a3282e436", - "609d8393b789027a3282e437", - "609d8393b789027a3282e438", - "609d8393b789027a3282e439", - "609d8393b789027a3282e43a", - "609d8393b789027a3282e43b", - "609d8393b789027a3282e43c", - "609d8393b789027a3282e43d", - "609d8393b789027a3282e43e", - "609d8393b789027a3282e43f" - ], - "measure_period": { - "type": "IVL_TS", - "low": { - "type": "TS", - "value": "201201010000", - "inclusive?": true, - "derived?": false - }, - "high": { - "type": "TS", - "value": "201212312359", - "inclusive?": true, - "derived?": false - }, - "width": { - "type": "PQ", - "unit": "a", - "value": "1", - "inclusive?": true, - "derived?": false - } - }, - "population_criteria": { - "IPP": { - "conjunction?": true, - "type": "IPP", - "hqmf_id": "38A161FC-1D7A-4E1D-9424-C8866AD1EFFC", - "preconditions": [ - { - "id": 2, - "preconditions": [ - { - "id": 1, - "reference": "TestCMS134__Initial_Population__AF4D369D_BEC7_4AE5_9619_2121606B0635" - } - ], - "conjunction_code": "allTrue" - } - ] - }, - "DENOM": { - "conjunction?": true, - "type": "DENOM", - "hqmf_id": "E2FBBA8F-8570-44EE-AB22-318EB51BE10C", - "preconditions": [ - { - "id": 4, - "preconditions": [ - { - "id": 3, - "reference": "TestCMS134__Denominator__AF4D369D_BEC7_4AE5_9619_2121606B0635" - } - ], - "conjunction_code": "allTrue" - } - ] - }, - "NUMER": { - "conjunction?": true, - "type": "NUMER", - "hqmf_id": "10F7604E-723B-4281-BE79-5A93BAFB5A3F", - "preconditions": [ - { - "id": 6, - "preconditions": [ - { - "id": 5, - "reference": "TestCMS134__Numerator__AF4D369D_BEC7_4AE5_9619_2121606B0635" - } - ], - "conjunction_code": "allTrue" - } - ] - }, - "DENEX": { - "conjunction?": true, - "type": "DENEX", - "hqmf_id": "797B54C6-C817-49FF-869E-5EA7FB8FA9DF", - "preconditions": [ - { - "id": 8, - "preconditions": [ - { - "id": 7, - "reference": "TestCMS134__Denominator_Exclusions__AF4D369D_BEC7_4AE5_9619_2121606B0635" - } - ], - "conjunction_code": "atLeastOneTrue" - } - ] - } - }, - "group_id": "501fdba3044a111b98000001", - "updated_at": "2021-05-13T19:52:51.173Z", - "created_at": "2021-05-13T19:52:51.173Z", - "cql_libraries": [ - { - "_id": "609d8393b789027a3282e442", - "is_top_level": true, - "library_name": "TestCMS134", - "library_version": "5.1.008", - "elm": { - "library": { - "identifier": { - "id": "TestCMS134", - "version": "5.1.008" - }, - "schemaIdentifier": { - "id": "urn:hl7-org:elm", - "version": "r1" - }, - "usings": { - "def": [ - { - "localIdentifier": "System", - "uri": "urn:hl7-org:elm-types:r1" - }, - { - "localId": "1", - "localIdentifier": "QDM", - "uri": "urn:healthit-gov:qdm:v5_3", - "version": "5.3" - } - ] - }, - "parameters": { - "def": [ - { - "localId": "32", - "name": "Measurement Period", - "accessLevel": "Public", - "parameterTypeSpecifier": { - "localId": "31", - "type": "IntervalTypeSpecifier", - "pointType": { - "localId": "30", - "name": "{urn:hl7-org:elm-types:r1}DateTime", - "type": "NamedTypeSpecifier" - } - } - } - ] - }, - "valueSets": { - "def": [ - { - "localId": "2", - "name": "ONC Administrative Sex", - "id": "2.16.840.1.113762.1.4.1", - "accessLevel": "Public" - }, - { - "localId": "3", - "name": "Race", - "id": "2.16.840.1.114222.4.11.836", - "accessLevel": "Public" - }, - { - "localId": "4", - "name": "Ethnicity", - "id": "2.16.840.1.114222.4.11.837", - "accessLevel": "Public" - }, - { - "localId": "5", - "name": "Payer", - "id": "2.16.840.1.114222.4.11.3591", - "accessLevel": "Public" - }, - { - "localId": "6", - "name": "ACE Inhibitor or ARB", - "id": "2.16.840.1.113883.3.526.3.1139", - "accessLevel": "Public" - }, - { - "localId": "7", - "name": "Annual Wellness Visit", - "id": "2.16.840.1.113883.3.526.3.1240", - "accessLevel": "Public" - }, - { - "localId": "8", - "name": "Diabetes", - "id": "2.16.840.1.113883.3.464.1003.103.12.1001", - "accessLevel": "Public" - }, - { - "localId": "9", - "name": "Diabetic Nephropathy", - "id": "2.16.840.1.113883.3.464.1003.109.12.1004", - "accessLevel": "Public" - }, - { - "localId": "10", - "name": "Dialysis Education", - "id": "2.16.840.1.113883.3.464.1003.109.12.1016", - "accessLevel": "Public" - }, - { - "localId": "11", - "name": "Dialysis Services", - "id": "2.16.840.1.113883.3.464.1003.109.12.1013", - "accessLevel": "Public" - }, - { - "localId": "12", - "name": "ESRD Monthly Outpatient Services", - "id": "2.16.840.1.113883.3.464.1003.109.12.1014", - "accessLevel": "Public" - }, - { - "localId": "13", - "name": "Face-to-Face Interaction", - "id": "2.16.840.1.113883.3.464.1003.101.12.1048", - "accessLevel": "Public" - }, - { - "localId": "14", - "name": "Glomerulonephritis and Nephrotic Syndrome", - "id": "2.16.840.1.113883.3.464.1003.109.12.1018", - "accessLevel": "Public" - }, - { - "localId": "15", - "name": "Home Healthcare Services", - "id": "2.16.840.1.113883.3.464.1003.101.12.1016", - "accessLevel": "Public" - }, - { - "localId": "16", - "name": "Hypertensive Chronic Kidney Disease", - "id": "2.16.840.1.113883.3.464.1003.109.12.1017", - "accessLevel": "Public" - }, - { - "localId": "17", - "name": "Kidney Transplant", - "id": "2.16.840.1.113883.3.464.1003.109.12.1012", - "accessLevel": "Public" - }, - { - "localId": "18", - "name": "Office Visit", - "id": "2.16.840.1.113883.3.464.1003.101.12.1001", - "accessLevel": "Public" - }, - { - "localId": "19", - "name": "Other Services Related to Dialysis", - "id": "2.16.840.1.113883.3.464.1003.109.12.1015", - "accessLevel": "Public" - }, - { - "localId": "20", - "name": "Preventive Care Services - Established Office Visit, 18 and Up", - "id": "2.16.840.1.113883.3.464.1003.101.12.1025", - "accessLevel": "Public" - }, - { - "localId": "21", - "name": "Preventive Care Services-Initial Office Visit, 18 and Up", - "id": "2.16.840.1.113883.3.464.1003.101.12.1023", - "accessLevel": "Public" - }, - { - "localId": "22", - "name": "Proteinuria", - "id": "2.16.840.1.113883.3.526.3.1003", - "accessLevel": "Public" - }, - { - "localId": "23", - "name": "Urine Protein Tests", - "id": "2.16.840.1.113883.3.464.1003.109.12.1024", - "accessLevel": "Public" - }, - { - "localId": "24", - "name": "Vascular Access for Dialysis", - "id": "2.16.840.1.113883.3.464.1003.109.12.1011", - "accessLevel": "Public" - }, - { - "localId": "25", - "name": "Kidney Failure", - "id": "2.16.840.1.113883.3.464.1003.109.12.1028", - "accessLevel": "Public" - }, - { - "localId": "26", - "name": "Hospice care ambulatory", - "id": "2.16.840.1.113762.1.4.1108.15", - "accessLevel": "Public" - }, - { - "localId": "27", - "name": "Discharged to Health Care Facility for Hospice Care", - "id": "2.16.840.1.113883.3.117.1.7.1.207", - "accessLevel": "Public" - }, - { - "localId": "28", - "name": "Discharged to Home for Hospice Care", - "id": "2.16.840.1.113883.3.117.1.7.1.209", - "accessLevel": "Public" - }, - { - "localId": "29", - "name": "Encounter Inpatient", - "id": "2.16.840.1.113883.3.666.5.307", - "accessLevel": "Public" - } - ] - }, - "statements": { - "def": [ - { - "name": "Patient", - "context": "Patient", - "expression": { - "type": "SingletonFrom", - "operand": { - "dataType": "{urn:healthit-gov:qdm:v5_3}Patient", - "templateId": "Patient", - "type": "Retrieve" - } - } - }, - { - "localId": "34", - "name": "SDE Ethnicity", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "34", - "s": [ - { - "value": [ - "define ", - "\"SDE Ethnicity\"", - ":\r\n\t" - ] - }, - { - "r": "33", - "s": [ - { - "value": [ - "[", - "\"Patient Characteristic Ethnicity\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Ethnicity\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "33", - "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicEthnicity", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Ethnicity", - "type": "ValueSetRef" - } - } - }, - { - "localId": "36", - "name": "SDE Payer", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "36", - "s": [ - { - "value": [ - "define ", - "\"SDE Payer\"", - ":\r\n\t" - ] - }, - { - "r": "35", - "s": [ - { - "value": [ - "[", - "\"Patient Characteristic Payer\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Payer\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "35", - "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicPayer", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Payer", - "type": "ValueSetRef" - } - } - }, - { - "localId": "38", - "name": "SDE Race", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "38", - "s": [ - { - "value": [ - "define ", - "\"SDE Race\"", - ":\r\n\t" - ] - }, - { - "r": "37", - "s": [ - { - "value": [ - "[", - "\"Patient Characteristic Race\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Race\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "37", - "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicRace", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Race", - "type": "ValueSetRef" - } - } - }, - { - "localId": "40", - "name": "SDE Sex", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "40", - "s": [ - { - "value": [ - "define ", - "\"SDE Sex\"", - ":\r\n\t" - ] - }, - { - "r": "39", - "s": [ - { - "value": [ - "[", - "\"Patient Characteristic Sex\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"ONC Administrative Sex\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "39", - "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicSex", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "ONC Administrative Sex", - "type": "ValueSetRef" - } - } - }, - { - "localId": "58", - "name": "Qualifying Encounter", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "58", - "s": [ - { - "value": [ - "define ", - "\"Qualifying Encounter\"", - ":\r\n\t" - ] - }, - { - "r": "57", - "s": [ - { - "s": [ - { - "r": "52", - "s": [ - { - "r": "51", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "51", - "s": [ - { - "r": "49", - "s": [ - { - "r": "47", - "s": [ - { - "r": "45", - "s": [ - { - "r": "43", - "s": [ - { - "r": "41", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Office Visit\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "42", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Face-to-Face Interaction\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "44", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Preventive Care Services - Established Office Visit, 18 and Up\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "46", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Preventive Care Services-Initial Office Visit, 18 and Up\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "48", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Home Healthcare Services\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "50", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Annual Wellness Visit\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "56", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "56", - "s": [ - { - "r": "54", - "s": [ - { - "r": "53", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "54", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "during", - " " - ] - }, - { - "r": "55", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "57", - "type": "Query", - "source": [ - { - "localId": "52", - "alias": "Encounter", - "expression": { - "localId": "51", - "type": "Union", - "operand": [ - { - "localId": "49", - "type": "Union", - "operand": [ - { - "localId": "47", - "type": "Union", - "operand": [ - { - "localId": "45", - "type": "Union", - "operand": [ - { - "localId": "43", - "type": "Union", - "operand": [ - { - "localId": "41", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Office Visit", - "type": "ValueSetRef" - } - }, - { - "localId": "42", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Face-to-Face Interaction", - "type": "ValueSetRef" - } - } - ] - }, - { - "localId": "44", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Preventive Care Services - Established Office Visit, 18 and Up", - "type": "ValueSetRef" - } - } - ] - }, - { - "localId": "46", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Preventive Care Services-Initial Office Visit, 18 and Up", - "type": "ValueSetRef" - } - } - ] - }, - { - "localId": "48", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Home Healthcare Services", - "type": "ValueSetRef" - } - } - ] - }, - { - "localId": "50", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Annual Wellness Visit", - "type": "ValueSetRef" - } - } - ] - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "56", - "type": "IncludedIn", - "operand": [ - { - "localId": "54", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - }, - { - "localId": "55", - "name": "Measurement Period", - "type": "ParameterRef" - } - ] - } - } - }, - { - "localId": "82", - "name": "Initial Population", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "82", - "s": [ - { - "value": [ - "define ", - "\"Initial Population\"", - ":\r\n\t" - ] - }, - { - "r": "81", - "s": [ - { - "r": "72", - "s": [ - { - "r": "66", - "s": [ - { - "r": "60", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "59", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "59", - "s": [ - { - "value": [ - "\"Qualifying Encounter\"" - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tand " - ] - }, - { - "r": "65", - "s": [ - { - "r": "63", - "s": [ - { - "value": [ - "AgeInYearsAt", - "(" - ] - }, - { - "r": "62", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "61", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - }, - { - "value": [ - ")" - ] - } - ] - }, - { - "value": [ - ">=", - " ", - "18" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tand " - ] - }, - { - "r": "71", - "s": [ - { - "r": "69", - "s": [ - { - "value": [ - "AgeInYearsAt", - "(" - ] - }, - { - "r": "68", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "67", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - }, - { - "value": [ - ")" - ] - } - ] - }, - { - "value": [ - "<", - " ", - "75" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tand " - ] - }, - { - "r": "80", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "79", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "79", - "s": [ - { - "s": [ - { - "r": "74", - "s": [ - { - "r": "73", - "s": [ - { - "r": "73", - "s": [ - { - "value": [ - "[", - "\"Diagnosis\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Diabetes\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "DiabetesDx" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "78", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "78", - "s": [ - { - "r": "76", - "s": [ - { - "r": "75", - "s": [ - { - "value": [ - "DiabetesDx" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "76", - "s": [ - { - "value": [ - "prevalencePeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "overlaps", - " " - ] - }, - { - "r": "77", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "81", - "type": "And", - "operand": [ - { - "localId": "72", - "type": "And", - "operand": [ - { - "localId": "66", - "type": "And", - "operand": [ - { - "localId": "60", - "type": "Exists", - "operand": { - "localId": "59", - "name": "Qualifying Encounter", - "type": "ExpressionRef" - } - }, - { - "localId": "65", - "type": "GreaterOrEqual", - "operand": [ - { - "localId": "63", - "precision": "Year", - "type": "CalculateAgeAt", - "operand": [ - { - "path": "birthDatetime", - "type": "Property", - "source": { - "name": "Patient", - "type": "ExpressionRef" - } - }, - { - "localId": "62", - "type": "Start", - "operand": { - "localId": "61", - "name": "Measurement Period", - "type": "ParameterRef" - } - } - ] - }, - { - "localId": "64", - "valueType": "{urn:hl7-org:elm-types:r1}Integer", - "value": "18", - "type": "Literal" - } - ] - } - ] - }, - { - "localId": "71", - "type": "Less", - "operand": [ - { - "localId": "69", - "precision": "Year", - "type": "CalculateAgeAt", - "operand": [ - { - "path": "birthDatetime", - "type": "Property", - "source": { - "name": "Patient", - "type": "ExpressionRef" - } - }, - { - "localId": "68", - "type": "Start", - "operand": { - "localId": "67", - "name": "Measurement Period", - "type": "ParameterRef" - } - } - ] - }, - { - "localId": "70", - "valueType": "{urn:hl7-org:elm-types:r1}Integer", - "value": "75", - "type": "Literal" - } - ] - } - ] - }, - { - "localId": "80", - "type": "Exists", - "operand": { - "localId": "79", - "type": "Query", - "source": [ - { - "localId": "74", - "alias": "DiabetesDx", - "expression": { - "localId": "73", - "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Diabetes", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "78", - "type": "Overlaps", - "operand": [ - { - "localId": "76", - "path": "prevalencePeriod", - "scope": "DiabetesDx", - "type": "Property" - }, - { - "localId": "77", - "name": "Measurement Period", - "type": "ParameterRef" - } - ] - } - } - } - ] - } - }, - { - "localId": "84", - "name": "Denominator", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "84", - "s": [ - { - "value": [ - "define ", - "\"Denominator\"", - ":\r\n\t" - ] - }, - { - "r": "83", - "s": [ - { - "value": [ - "\"Initial Population\"" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "83", - "name": "Initial Population", - "type": "ExpressionRef" - } - }, - { - "localId": "121", - "name": "Denominator Exclusions", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "121", - "s": [ - { - "value": [ - "define ", - "\"Denominator Exclusions\"", - ":\r\n\t" - ] - }, - { - "r": "120", - "s": [ - { - "r": "111", - "s": [ - { - "r": "102", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "101", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "101", - "s": [ - { - "s": [ - { - "r": "86", - "s": [ - { - "r": "85", - "s": [ - { - "r": "85", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Encounter Inpatient\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "DischargeHospice" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t" - ] - }, - { - "r": "100", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "100", - "s": [ - { - "r": "95", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "95", - "s": [ - { - "r": "90", - "s": [ - { - "r": "88", - "s": [ - { - "r": "87", - "s": [ - { - "value": [ - "DischargeHospice" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "88", - "s": [ - { - "value": [ - "dischargeDisposition" - ] - } - ] - } - ] - }, - { - "value": [ - " in " - ] - }, - { - "r": "89", - "s": [ - { - "value": [ - "\"Discharged to Home for Hospice Care\"" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\tor " - ] - }, - { - "r": "94", - "s": [ - { - "r": "92", - "s": [ - { - "r": "91", - "s": [ - { - "value": [ - "DischargeHospice" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "92", - "s": [ - { - "value": [ - "dischargeDisposition" - ] - } - ] - } - ] - }, - { - "value": [ - " in " - ] - }, - { - "r": "93", - "s": [ - { - "value": [ - "\"Discharged to Health Care Facility for Hospice Care\"" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t)" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\tand " - ] - }, - { - "r": "99", - "s": [ - { - "r": "97", - "s": [ - { - "r": "96", - "s": [ - { - "value": [ - "DischargeHospice" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "97", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "ends during", - " " - ] - }, - { - "r": "98", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tor " - ] - }, - { - "r": "110", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "109", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "109", - "s": [ - { - "s": [ - { - "r": "104", - "s": [ - { - "r": "103", - "s": [ - { - "r": "103", - "s": [ - { - "value": [ - "[", - "\"Intervention, Order\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Hospice care ambulatory\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "HospiceOrder" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "108", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "108", - "s": [ - { - "r": "106", - "s": [ - { - "r": "105", - "s": [ - { - "value": [ - "HospiceOrder" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "106", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "during", - " " - ] - }, - { - "r": "107", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tor " - ] - }, - { - "r": "119", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "118", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "118", - "s": [ - { - "s": [ - { - "r": "113", - "s": [ - { - "r": "112", - "s": [ - { - "r": "112", - "s": [ - { - "value": [ - "[", - "\"Intervention, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Hospice care ambulatory\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "HospicePerformed" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "117", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "117", - "s": [ - { - "r": "115", - "s": [ - { - "r": "114", - "s": [ - { - "value": [ - "HospicePerformed" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "115", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "overlaps", - " " - ] - }, - { - "r": "116", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "120", - "type": "Or", - "operand": [ - { - "localId": "111", - "type": "Or", - "operand": [ - { - "localId": "102", - "type": "Exists", - "operand": { - "localId": "101", - "type": "Query", - "source": [ - { - "localId": "86", - "alias": "DischargeHospice", - "expression": { - "localId": "85", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Encounter Inpatient", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "100", - "type": "And", - "operand": [ - { - "localId": "95", - "type": "Or", - "operand": [ - { - "localId": "90", - "type": "InValueSet", - "code": { - "localId": "88", - "path": "dischargeDisposition", - "scope": "DischargeHospice", - "type": "Property" - }, - "valueset": { - "localId": "89", - "name": "Discharged to Home for Hospice Care" - } - }, - { - "localId": "94", - "type": "InValueSet", - "code": { - "localId": "92", - "path": "dischargeDisposition", - "scope": "DischargeHospice", - "type": "Property" - }, - "valueset": { - "localId": "93", - "name": "Discharged to Health Care Facility for Hospice Care" - } - } - ] - }, - { - "localId": "99", - "type": "In", - "operand": [ - { - "type": "End", - "operand": { - "localId": "97", - "path": "relevantPeriod", - "scope": "DischargeHospice", - "type": "Property" - } - }, - { - "localId": "98", - "name": "Measurement Period", - "type": "ParameterRef" - } - ] - } - ] - } - } - }, - { - "localId": "110", - "type": "Exists", - "operand": { - "localId": "109", - "type": "Query", - "source": [ - { - "localId": "104", - "alias": "HospiceOrder", - "expression": { - "localId": "103", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionOrder", - "templateId": "PositiveInterventionOrder", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Hospice care ambulatory", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "108", - "type": "In", - "operand": [ - { - "localId": "106", - "path": "authorDatetime", - "scope": "HospiceOrder", - "type": "Property" - }, - { - "localId": "107", - "name": "Measurement Period", - "type": "ParameterRef" - } - ] - } - } - } - ] - }, - { - "localId": "119", - "type": "Exists", - "operand": { - "localId": "118", - "type": "Query", - "source": [ - { - "localId": "113", - "alias": "HospicePerformed", - "expression": { - "localId": "112", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionPerformed", - "templateId": "PositiveInterventionPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Hospice care ambulatory", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "117", - "type": "Overlaps", - "operand": [ - { - "localId": "115", - "path": "relevantPeriod", - "scope": "HospicePerformed", - "type": "Property" - }, - { - "localId": "116", - "name": "Measurement Period", - "type": "ParameterRef" - } - ] - } - } - } - ] - } - }, - { - "localId": "137", - "name": "Neuropathy Diagnoses", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "137", - "s": [ - { - "value": [ - "define ", - "\"Neuropathy Diagnoses\"", - ":\r\n\t" - ] - }, - { - "r": "136", - "s": [ - { - "s": [ - { - "r": "131", - "s": [ - { - "r": "130", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "130", - "s": [ - { - "r": "128", - "s": [ - { - "r": "126", - "s": [ - { - "r": "124", - "s": [ - { - "r": "122", - "s": [ - { - "value": [ - "[", - "\"Diagnosis\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Hypertensive Chronic Kidney Disease\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "123", - "s": [ - { - "value": [ - "[", - "\"Diagnosis\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Kidney Failure\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "125", - "s": [ - { - "value": [ - "[", - "\"Diagnosis\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Glomerulonephritis and Nephrotic Syndrome\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "127", - "s": [ - { - "value": [ - "[", - "\"Diagnosis\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Diabetic Nephropathy\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "129", - "s": [ - { - "value": [ - "[", - "\"Diagnosis\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Proteinuria\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - }, - { - "value": [ - " ", - "Diagnoses" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "135", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "135", - "s": [ - { - "r": "133", - "s": [ - { - "r": "132", - "s": [ - { - "value": [ - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "133", - "s": [ - { - "value": [ - "prevalencePeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "overlaps", - " " - ] - }, - { - "r": "134", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "136", - "type": "Query", - "source": [ - { - "localId": "131", - "alias": "Diagnoses", - "expression": { - "localId": "130", - "type": "Union", - "operand": [ - { - "localId": "128", - "type": "Union", - "operand": [ - { - "localId": "126", - "type": "Union", - "operand": [ - { - "localId": "124", - "type": "Union", - "operand": [ - { - "localId": "122", - "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Hypertensive Chronic Kidney Disease", - "type": "ValueSetRef" - } - }, - { - "localId": "123", - "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Kidney Failure", - "type": "ValueSetRef" - } - } - ] - }, - { - "localId": "125", - "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Glomerulonephritis and Nephrotic Syndrome", - "type": "ValueSetRef" - } - } - ] - }, - { - "localId": "127", - "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Diabetic Nephropathy", - "type": "ValueSetRef" - } - } - ] - }, - { - "localId": "129", - "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Proteinuria", - "type": "ValueSetRef" - } - } - ] - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "135", - "type": "Overlaps", - "operand": [ - { - "localId": "133", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - }, - { - "localId": "134", - "name": "Measurement Period", - "type": "ParameterRef" - } - ] - } - } - }, - { - "localId": "145", - "name": "Active ACEI or ARB", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "145", - "s": [ - { - "value": [ - "define ", - "\"Active ACEI or ARB\"", - ":\r\n\t" - ] - }, - { - "r": "144", - "s": [ - { - "s": [ - { - "r": "139", - "s": [ - { - "r": "138", - "s": [ - { - "r": "138", - "s": [ - { - "value": [ - "[", - "\"Medication, Active\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"ACE Inhibitor or ARB\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "ACEIorARB" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "143", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "143", - "s": [ - { - "r": "141", - "s": [ - { - "r": "140", - "s": [ - { - "value": [ - "ACEIorARB" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "141", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "overlaps", - " " - ] - }, - { - "r": "142", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "144", - "type": "Query", - "source": [ - { - "localId": "139", - "alias": "ACEIorARB", - "expression": { - "localId": "138", - "dataType": "{urn:healthit-gov:qdm:v5_3}MedicationActive", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "ACE Inhibitor or ARB", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "143", - "type": "Overlaps", - "operand": [ - { - "localId": "141", - "path": "relevantPeriod", - "scope": "ACEIorARB", - "type": "Property" - }, - { - "localId": "142", - "name": "Measurement Period", - "type": "ParameterRef" - } - ] - } - } - }, - { - "localId": "151", - "name": "Renal Procedures", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "151", - "s": [ - { - "value": [ - "define ", - "\"Renal Procedures\"", - ":\r\n\t" - ] - }, - { - "r": "150", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "150", - "s": [ - { - "r": "148", - "s": [ - { - "r": "146", - "s": [ - { - "value": [ - "[", - "\"Procedure, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Kidney Transplant\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tunion " - ] - }, - { - "r": "147", - "s": [ - { - "value": [ - "[", - "\"Procedure, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Vascular Access for Dialysis\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tunion " - ] - }, - { - "r": "149", - "s": [ - { - "value": [ - "[", - "\"Procedure, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Dialysis Services\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "150", - "type": "Union", - "operand": [ - { - "localId": "148", - "type": "Union", - "operand": [ - { - "localId": "146", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedurePerformed", - "templateId": "PositiveProcedurePerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Kidney Transplant", - "type": "ValueSetRef" - } - }, - { - "localId": "147", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedurePerformed", - "templateId": "PositiveProcedurePerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Vascular Access for Dialysis", - "type": "ValueSetRef" - } - } - ] - }, - { - "localId": "149", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedurePerformed", - "templateId": "PositiveProcedurePerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Dialysis Services", - "type": "ValueSetRef" - } - } - ] - } - }, - { - "localId": "155", - "name": "Renal Interventions", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "155", - "s": [ - { - "value": [ - "define ", - "\"Renal Interventions\"", - ":\r\n\t" - ] - }, - { - "r": "154", - "s": [ - { - "r": "152", - "s": [ - { - "value": [ - "[", - "\"Intervention, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Other Services Related to Dialysis\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "153", - "s": [ - { - "value": [ - "[", - "\"Intervention, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Dialysis Education\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "154", - "type": "Union", - "operand": [ - { - "localId": "152", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionPerformed", - "templateId": "PositiveInterventionPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Other Services Related to Dialysis", - "type": "ValueSetRef" - } - }, - { - "localId": "153", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionPerformed", - "templateId": "PositiveInterventionPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Dialysis Education", - "type": "ValueSetRef" - } - } - ] - } - }, - { - "localId": "157", - "name": "ESRD Encounter", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "157", - "s": [ - { - "value": [ - "define ", - "\"ESRD Encounter\"", - ":\r\n\t" - ] - }, - { - "r": "156", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"ESRD Monthly Outpatient Services\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "156", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "ESRD Monthly Outpatient Services", - "type": "ValueSetRef" - } - } - }, - { - "localId": "164", - "name": "Protein Urea Lab Test", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "164", - "s": [ - { - "value": [ - "define ", - "\"Protein Urea Lab Test\"", - ":\r\n\t" - ] - }, - { - "r": "163", - "s": [ - { - "s": [ - { - "r": "159", - "s": [ - { - "r": "158", - "s": [ - { - "r": "158", - "s": [ - { - "value": [ - "[", - "\"Laboratory Test, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Urine Protein Tests\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "ProteinUrea" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "162", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "162", - "s": [ - { - "r": "161", - "s": [ - { - "r": "160", - "s": [ - { - "value": [ - "ProteinUrea" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "161", - "s": [ - { - "value": [ - "result" - ] - } - ] - } - ] - }, - { - "value": [ - " is not null" - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "163", - "type": "Query", - "source": [ - { - "localId": "159", - "alias": "ProteinUrea", - "expression": { - "localId": "158", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveLaboratoryTestPerformed", - "templateId": "PositiveLaboratoryTestPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Urine Protein Tests", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "162", - "type": "Not", - "operand": { - "type": "IsNull", - "operand": { - "localId": "161", - "path": "result", - "scope": "ProteinUrea", - "type": "Property" - } - } - } - } - }, - { - "localId": "196", - "name": "Nephropathy Screenings", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "196", - "s": [ - { - "value": [ - "define ", - "\"Nephropathy Screenings\"", - ":\r\n\t" - ] - }, - { - "r": "195", - "s": [ - { - "s": [ - { - "r": "190", - "s": [ - { - "r": "189", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "189", - "s": [ - { - "r": "181", - "s": [ - { - "r": "173", - "s": [ - { - "r": "165", - "s": [ - { - "value": [ - "\"Renal Procedures\"" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "172", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "172", - "s": [ - { - "s": [ - { - "r": "167", - "s": [ - { - "r": "166", - "s": [ - { - "s": [ - { - "value": [ - "\"Renal Interventions\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "RenalInterventions" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "171", - "s": [ - { - "value": [ - "return " - ] - }, - { - "r": "170", - "s": [ - { - "value": [ - "\"Procedure, Performed\"", - " { " - ] - }, - { - "s": [ - { - "value": [ - "relevantPeriod", - ": " - ] - }, - { - "r": "169", - "s": [ - { - "r": "168", - "s": [ - { - "value": [ - "RenalInterventions" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "169", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - " }" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "180", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "180", - "s": [ - { - "s": [ - { - "r": "175", - "s": [ - { - "r": "174", - "s": [ - { - "s": [ - { - "value": [ - "\"ESRD Encounter\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "ESRDEncounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "179", - "s": [ - { - "value": [ - "return " - ] - }, - { - "r": "178", - "s": [ - { - "value": [ - "\"Procedure, Performed\"", - " { " - ] - }, - { - "s": [ - { - "value": [ - "relevantPeriod", - ": " - ] - }, - { - "r": "177", - "s": [ - { - "r": "176", - "s": [ - { - "value": [ - "ESRDEncounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "177", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - " }" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "188", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "188", - "s": [ - { - "s": [ - { - "r": "183", - "s": [ - { - "r": "182", - "s": [ - { - "s": [ - { - "value": [ - "\"Protein Urea Lab Test\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "ProteinUrea" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "187", - "s": [ - { - "value": [ - "return " - ] - }, - { - "r": "186", - "s": [ - { - "value": [ - "\"Procedure, Performed\"", - " { " - ] - }, - { - "s": [ - { - "value": [ - "relevantPeriod", - ": " - ] - }, - { - "r": "185", - "s": [ - { - "r": "184", - "s": [ - { - "value": [ - "ProteinUrea" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "185", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - " }" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - }, - { - "value": [ - " ", - "Screenings" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "194", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "194", - "s": [ - { - "r": "192", - "s": [ - { - "r": "191", - "s": [ - { - "value": [ - "Screenings" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "192", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "during", - " " - ] - }, - { - "r": "193", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "195", - "type": "Query", - "source": [ - { - "localId": "190", - "alias": "Screenings", - "expression": { - "localId": "189", - "type": "Union", - "operand": [ - { - "localId": "181", - "type": "Union", - "operand": [ - { - "localId": "173", - "type": "Union", - "operand": [ - { - "localId": "165", - "name": "Renal Procedures", - "type": "ExpressionRef" - }, - { - "localId": "172", - "type": "Query", - "source": [ - { - "localId": "167", - "alias": "RenalInterventions", - "expression": { - "localId": "166", - "name": "Renal Interventions", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ], - "return": { - "localId": "171", - "expression": { - "localId": "170", - "classType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedurePerformed", - "type": "Instance", - "element": [ - { - "name": "relevantPeriod", - "value": { - "localId": "169", - "path": "relevantPeriod", - "scope": "RenalInterventions", - "type": "Property" - } - } - ] - } - } - } - ] - }, - { - "localId": "180", - "type": "Query", - "source": [ - { - "localId": "175", - "alias": "ESRDEncounter", - "expression": { - "localId": "174", - "name": "ESRD Encounter", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ], - "return": { - "localId": "179", - "expression": { - "localId": "178", - "classType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedurePerformed", - "type": "Instance", - "element": [ - { - "name": "relevantPeriod", - "value": { - "localId": "177", - "path": "relevantPeriod", - "scope": "ESRDEncounter", - "type": "Property" - } - } - ] - } - } - } - ] - }, - { - "localId": "188", - "type": "Query", - "source": [ - { - "localId": "183", - "alias": "ProteinUrea", - "expression": { - "localId": "182", - "name": "Protein Urea Lab Test", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ], - "return": { - "localId": "187", - "expression": { - "localId": "186", - "classType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedurePerformed", - "type": "Instance", - "element": [ - { - "name": "relevantPeriod", - "value": { - "localId": "185", - "path": "relevantPeriod", - "scope": "ProteinUrea", - "type": "Property" - } - } - ] - } - } - } - ] - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "194", - "type": "IncludedIn", - "operand": [ - { - "localId": "192", - "path": "relevantPeriod", - "scope": "Screenings", - "type": "Property" - }, - { - "localId": "193", - "name": "Measurement Period", - "type": "ParameterRef" - } - ] - } - } - }, - { - "localId": "205", - "name": "Numerator", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "205", - "s": [ - { - "value": [ - "define ", - "\"Numerator\"", - ":\r\n\t" - ] - }, - { - "r": "204", - "s": [ - { - "r": "201", - "s": [ - { - "r": "198", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "197", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "197", - "s": [ - { - "value": [ - "\"Active ACEI or ARB\"" - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tor " - ] - }, - { - "r": "200", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "199", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "199", - "s": [ - { - "value": [ - "\"Neuropathy Diagnoses\"" - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tor " - ] - }, - { - "r": "203", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "202", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "202", - "s": [ - { - "value": [ - "\"Nephropathy Screenings\"" - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "204", - "type": "Or", - "operand": [ - { - "localId": "201", - "type": "Or", - "operand": [ - { - "localId": "198", - "type": "Exists", - "operand": { - "localId": "197", - "name": "Active ACEI or ARB", - "type": "ExpressionRef" - } - }, - { - "localId": "200", - "type": "Exists", - "operand": { - "localId": "199", - "name": "Neuropathy Diagnoses", - "type": "ExpressionRef" - } - } - ] - }, - { - "localId": "203", - "type": "Exists", - "operand": { - "localId": "202", - "name": "Nephropathy Screenings", - "type": "ExpressionRef" - } - } - ] - } - } - ] - } - } - }, - "cql": "library TestCMS134 version '5.1.008'\r\n\r\nusing QDM version '5.3'\r\n\r\nvalueset \"ONC Administrative Sex\": 'urn:oid:2.16.840.1.113762.1.4.1'\r\nvalueset \"Race\": 'urn:oid:2.16.840.1.114222.4.11.836'\r\nvalueset \"Ethnicity\": 'urn:oid:2.16.840.1.114222.4.11.837'\r\nvalueset \"Payer\": 'urn:oid:2.16.840.1.114222.4.11.3591'\r\nvalueset \"ACE Inhibitor or ARB\": 'urn:oid:2.16.840.1.113883.3.526.3.1139'\r\nvalueset \"Annual Wellness Visit\": 'urn:oid:2.16.840.1.113883.3.526.3.1240'\r\nvalueset \"Diabetes\": 'urn:oid:2.16.840.1.113883.3.464.1003.103.12.1001'\r\nvalueset \"Diabetic Nephropathy\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1004'\r\nvalueset \"Dialysis Education\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1016'\r\nvalueset \"Dialysis Services\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1013'\r\nvalueset \"ESRD Monthly Outpatient Services\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1014'\r\nvalueset \"Face-to-Face Interaction\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1048'\r\nvalueset \"Glomerulonephritis and Nephrotic Syndrome\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1018'\r\nvalueset \"Home Healthcare Services\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1016'\r\nvalueset \"Hypertensive Chronic Kidney Disease\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1017'\r\nvalueset \"Kidney Transplant\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1012'\r\nvalueset \"Office Visit\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1001'\r\nvalueset \"Other Services Related to Dialysis\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1015'\r\nvalueset \"Preventive Care Services - Established Office Visit, 18 and Up\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1025'\r\nvalueset \"Preventive Care Services-Initial Office Visit, 18 and Up\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1023'\r\nvalueset \"Proteinuria\": 'urn:oid:2.16.840.1.113883.3.526.3.1003'\r\nvalueset \"Urine Protein Tests\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1024'\r\nvalueset \"Vascular Access for Dialysis\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1011'\r\nvalueset \"Kidney Failure\": 'urn:oid:2.16.840.1.113883.3.464.1003.109.12.1028'\r\nvalueset \"Hospice care ambulatory\": 'urn:oid:2.16.840.1.113762.1.4.1108.15'\r\nvalueset \"Discharged to Health Care Facility for Hospice Care\": 'urn:oid:2.16.840.1.113883.3.117.1.7.1.207'\r\nvalueset \"Discharged to Home for Hospice Care\": 'urn:oid:2.16.840.1.113883.3.117.1.7.1.209'\r\nvalueset \"Encounter Inpatient\": 'urn:oid:2.16.840.1.113883.3.666.5.307'\r\n\r\nparameter \"Measurement Period\" Interval\r\n\r\ncontext Patient\r\n\r\ndefine \"SDE Ethnicity\":\r\n\t[\"Patient Characteristic Ethnicity\": \"Ethnicity\"]\r\n\r\ndefine \"SDE Payer\":\r\n\t[\"Patient Characteristic Payer\": \"Payer\"]\r\n\r\ndefine \"SDE Race\":\r\n\t[\"Patient Characteristic Race\": \"Race\"]\r\n\r\ndefine \"SDE Sex\":\r\n\t[\"Patient Characteristic Sex\": \"ONC Administrative Sex\"]\r\n\r\ndefine \"Qualifying Encounter\":\r\n\t( [\"Encounter, Performed\": \"Office Visit\"]\r\n\t\tunion [\"Encounter, Performed\": \"Face-to-Face Interaction\"]\r\n\t\tunion [\"Encounter, Performed\": \"Preventive Care Services - Established Office Visit, 18 and Up\"]\r\n\t\tunion [\"Encounter, Performed\": \"Preventive Care Services-Initial Office Visit, 18 and Up\"]\r\n\t\tunion [\"Encounter, Performed\": \"Home Healthcare Services\"]\r\n\t\tunion [\"Encounter, Performed\": \"Annual Wellness Visit\"] ) Encounter\r\n\t\twhere Encounter.relevantPeriod during \"Measurement Period\"\r\n\r\ndefine \"Initial Population\":\r\n\texists ( \"Qualifying Encounter\" )\r\n\t\tand AgeInYearsAt(start of \"Measurement Period\")>= 18\r\n\t\tand AgeInYearsAt(start of \"Measurement Period\")< 75\r\n\t\tand exists ( [\"Diagnosis\": \"Diabetes\"] DiabetesDx\r\n\t\t\t\twhere DiabetesDx.prevalencePeriod overlaps \"Measurement Period\"\r\n\t\t)\r\n\r\ndefine \"Denominator\":\r\n\t\"Initial Population\"\r\n\r\ndefine \"Denominator Exclusions\":\r\n\texists ( [\"Encounter, Performed\": \"Encounter Inpatient\"] DischargeHospice\r\n\t\t\twhere ( DischargeHospice.dischargeDisposition in \"Discharged to Home for Hospice Care\"\r\n\t\t\t\t\tor DischargeHospice.dischargeDisposition in \"Discharged to Health Care Facility for Hospice Care\"\r\n\t\t\t)\r\n\t\t\t\tand DischargeHospice.relevantPeriod ends during \"Measurement Period\"\r\n\t)\r\n\t\tor exists ( [\"Intervention, Order\": \"Hospice care ambulatory\"] HospiceOrder\r\n\t\t\t\twhere HospiceOrder.authorDatetime during \"Measurement Period\"\r\n\t\t)\r\n\t\tor exists ( [\"Intervention, Performed\": \"Hospice care ambulatory\"] HospicePerformed\r\n\t\t\t\twhere HospicePerformed.relevantPeriod overlaps \"Measurement Period\"\r\n\t\t)\r\n\r\ndefine \"Neuropathy Diagnoses\":\r\n\t( [\"Diagnosis\": \"Hypertensive Chronic Kidney Disease\"]\r\n\t\tunion [\"Diagnosis\": \"Kidney Failure\"]\r\n\t\tunion [\"Diagnosis\": \"Glomerulonephritis and Nephrotic Syndrome\"]\r\n\t\tunion [\"Diagnosis\": \"Diabetic Nephropathy\"]\r\n\t\tunion [\"Diagnosis\": \"Proteinuria\"] ) Diagnoses\r\n\t\twhere Diagnoses.prevalencePeriod overlaps \"Measurement Period\"\r\n\r\ndefine \"Active ACEI or ARB\":\r\n\t[\"Medication, Active\": \"ACE Inhibitor or ARB\"] ACEIorARB\r\n\t\twhere ACEIorARB.relevantPeriod overlaps \"Measurement Period\"\r\n\r\ndefine \"Renal Procedures\":\r\n\t( [\"Procedure, Performed\": \"Kidney Transplant\"]\r\n\t\t\tunion [\"Procedure, Performed\": \"Vascular Access for Dialysis\"]\r\n\t\t\tunion [\"Procedure, Performed\": \"Dialysis Services\"]\r\n\t)\r\n\r\ndefine \"Renal Interventions\":\r\n\t[\"Intervention, Performed\": \"Other Services Related to Dialysis\"]\r\n\t\tunion [\"Intervention, Performed\": \"Dialysis Education\"]\r\n\r\ndefine \"ESRD Encounter\":\r\n\t[\"Encounter, Performed\": \"ESRD Monthly Outpatient Services\"]\r\n\r\ndefine \"Protein Urea Lab Test\":\r\n\t[\"Laboratory Test, Performed\": \"Urine Protein Tests\"] ProteinUrea\r\n\t\twhere ProteinUrea.result is not null\r\n\r\ndefine \"Nephropathy Screenings\":\r\n\t( \"Renal Procedures\"\r\n\t\tunion ( \"Renal Interventions\" RenalInterventions\r\n\t\t\t\treturn \"Procedure, Performed\" { relevantPeriod: RenalInterventions.relevantPeriod }\r\n\t\t)\r\n\t\tunion ( \"ESRD Encounter\" ESRDEncounter\r\n\t\t\t\treturn \"Procedure, Performed\" { relevantPeriod: ESRDEncounter.relevantPeriod }\r\n\t\t)\r\n\t\tunion ( \"Protein Urea Lab Test\" ProteinUrea\r\n\t\t\t\treturn \"Procedure, Performed\" { relevantPeriod: ProteinUrea.relevantPeriod }\r\n\t\t) ) Screenings\r\n\t\twhere Screenings.relevantPeriod during \"Measurement Period\"\r\n\r\ndefine \"Numerator\":\r\n\texists ( \"Active ACEI or ARB\" )\r\n\t\tor exists ( \"Neuropathy Diagnoses\" )\r\n\t\tor exists ( \"Nephropathy Screenings\" )\r\n", - "elm_annotations": { - "statements": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"SDE Ethnicity\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Patient Characteristic Ethnicity\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Ethnicity\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "33" - } - ], - "ref_id": "34" - } - ], - "define_name": "SDE Ethnicity" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"SDE Payer\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Patient Characteristic Payer\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Payer\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "35" - } - ], - "ref_id": "36" - } - ], - "define_name": "SDE Payer" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"SDE Race\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Patient Characteristic Race\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Race\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "37" - } - ], - "ref_id": "38" - } - ], - "define_name": "SDE Race" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"SDE Sex\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Patient Characteristic Sex\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"ONC Administrative Sex\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "39" - } - ], - "ref_id": "40" - } - ], - "define_name": "SDE Sex" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Qualifying Encounter\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Office Visit\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "41" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Face-to-Face Interaction\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "42" - } - ], - "node_type": "Union", - "ref_id": "43" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Preventive Care Services - Established Office Visit, 18 and Up\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "44" - } - ], - "node_type": "Union", - "ref_id": "45" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Preventive Care Services-Initial Office Visit, 18 and Up\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "46" - } - ], - "node_type": "Union", - "ref_id": "47" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Home Healthcare Services\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "48" - } - ], - "node_type": "Union", - "ref_id": "49" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Annual Wellness Visit\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "50" - } - ], - "node_type": "Union", - "ref_id": "51" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Union", - "ref_id": "51" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "52" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "53" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "54" - } - ], - "node_type": "Property", - "ref_id": "54" - }, - { - "children": [ - { - "text": " during " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "55" - } - ], - "ref_id": "56" - } - ], - "ref_id": "56" - } - ], - "node_type": "Query", - "ref_id": "57" - } - ], - "ref_id": "58" - } - ], - "define_name": "Qualifying Encounter" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Initial Population\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "exists" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Qualifying Encounter\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "59" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "59" - } - ], - "node_type": "Exists", - "ref_id": "60" - }, - { - "children": [ - { - "text": "\n and " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "AgeInYearsAt(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "61" - } - ], - "node_type": "Start", - "ref_id": "62" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "CalculateAgeAt", - "ref_id": "63" - }, - { - "children": [ - { - "text": " >= 18" - } - ] - } - ], - "node_type": "GreaterOrEqual", - "ref_id": "65" - } - ], - "node_type": "And", - "ref_id": "66" - }, - { - "children": [ - { - "text": "\n and " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "AgeInYearsAt(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "67" - } - ], - "node_type": "Start", - "ref_id": "68" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "CalculateAgeAt", - "ref_id": "69" - }, - { - "children": [ - { - "text": " < 75" - } - ] - } - ], - "node_type": "Less", - "ref_id": "71" - } - ], - "node_type": "And", - "ref_id": "72" - }, - { - "children": [ - { - "text": "\n and " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "exists" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Diagnosis\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Diabetes\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "73" - } - ], - "node_type": "Retrieve", - "ref_id": "73" - }, - { - "children": [ - { - "text": " DiabetesDx" - } - ] - } - ], - "ref_id": "74" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "DiabetesDx" - } - ] - } - ], - "ref_id": "75" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "prevalencePeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "76" - } - ], - "node_type": "Property", - "ref_id": "76" - }, - { - "children": [ - { - "text": " overlaps " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "77" - } - ], - "ref_id": "78" - } - ], - "ref_id": "78" - } - ], - "node_type": "Query", - "ref_id": "79" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Query", - "ref_id": "79" - } - ], - "node_type": "Exists", - "ref_id": "80" - } - ], - "node_type": "And", - "ref_id": "81" - } - ], - "ref_id": "82" - } - ], - "define_name": "Initial Population" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Denominator\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Initial Population\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "83" - } - ], - "ref_id": "84" - } - ], - "define_name": "Denominator" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Denominator Exclusions\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "exists" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Encounter Inpatient\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "85" - } - ], - "node_type": "Retrieve", - "ref_id": "85" - }, - { - "children": [ - { - "text": " DischargeHospice" - } - ] - } - ], - "ref_id": "86" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "DischargeHospice" - } - ] - } - ], - "ref_id": "87" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "dischargeDisposition" - } - ] - } - ], - "ref_id": "88" - } - ], - "ref_id": "88" - }, - { - "children": [ - { - "text": " in " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Discharged to Home for Hospice Care\"" - } - ] - } - ], - "ref_id": "89" - } - ], - "node_type": "InValueSet", - "ref_id": "90" - }, - { - "children": [ - { - "text": "\n or " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "DischargeHospice" - } - ] - } - ], - "ref_id": "91" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "dischargeDisposition" - } - ] - } - ], - "ref_id": "92" - } - ], - "ref_id": "92" - }, - { - "children": [ - { - "text": " in " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Discharged to Health Care Facility for Hospice Care\"" - } - ] - } - ], - "ref_id": "93" - } - ], - "node_type": "InValueSet", - "ref_id": "94" - } - ], - "node_type": "Or", - "ref_id": "95" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Or", - "ref_id": "95" - }, - { - "children": [ - { - "text": "\n and " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "DischargeHospice" - } - ] - } - ], - "ref_id": "96" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "97" - } - ], - "node_type": "Property", - "ref_id": "97" - }, - { - "children": [ - { - "text": " ends during " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "98" - } - ], - "node_type": "In", - "ref_id": "99" - } - ], - "ref_id": "100" - } - ], - "ref_id": "100" - } - ], - "node_type": "Query", - "ref_id": "101" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Query", - "ref_id": "101" - } - ], - "node_type": "Exists", - "ref_id": "102" - }, - { - "children": [ - { - "text": "\n or " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "exists" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Intervention, Order\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Hospice care ambulatory\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "103" - } - ], - "node_type": "Retrieve", - "ref_id": "103" - }, - { - "children": [ - { - "text": " HospiceOrder" - } - ] - } - ], - "ref_id": "104" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "HospiceOrder" - } - ] - } - ], - "ref_id": "105" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "106" - } - ], - "node_type": "Property", - "ref_id": "106" - }, - { - "children": [ - { - "text": " during " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "107" - } - ], - "ref_id": "108" - } - ], - "ref_id": "108" - } - ], - "node_type": "Query", - "ref_id": "109" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Query", - "ref_id": "109" - } - ], - "node_type": "Exists", - "ref_id": "110" - } - ], - "node_type": "Or", - "ref_id": "111" - }, - { - "children": [ - { - "text": "\n or " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "exists" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Intervention, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Hospice care ambulatory\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "112" - } - ], - "node_type": "Retrieve", - "ref_id": "112" - }, - { - "children": [ - { - "text": " HospicePerformed" - } - ] - } - ], - "ref_id": "113" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "HospicePerformed" - } - ] - } - ], - "ref_id": "114" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "115" - } - ], - "node_type": "Property", - "ref_id": "115" - }, - { - "children": [ - { - "text": " overlaps " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "116" - } - ], - "ref_id": "117" - } - ], - "ref_id": "117" - } - ], - "node_type": "Query", - "ref_id": "118" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Query", - "ref_id": "118" - } - ], - "node_type": "Exists", - "ref_id": "119" - } - ], - "node_type": "Or", - "ref_id": "120" - } - ], - "ref_id": "121" - } - ], - "define_name": "Denominator Exclusions" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Neuropathy Diagnoses\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Diagnosis\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Hypertensive Chronic Kidney Disease\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "122" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Diagnosis\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Kidney Failure\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "123" - } - ], - "node_type": "Union", - "ref_id": "124" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Diagnosis\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Glomerulonephritis and Nephrotic Syndrome\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "125" - } - ], - "node_type": "Union", - "ref_id": "126" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Diagnosis\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Diabetic Nephropathy\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "127" - } - ], - "node_type": "Union", - "ref_id": "128" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Diagnosis\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Proteinuria\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "129" - } - ], - "node_type": "Union", - "ref_id": "130" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Union", - "ref_id": "130" - }, - { - "children": [ - { - "text": " Diagnoses" - } - ] - } - ], - "ref_id": "131" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Diagnoses" - } - ] - } - ], - "ref_id": "132" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "prevalencePeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "133" - } - ], - "node_type": "Property", - "ref_id": "133" - }, - { - "children": [ - { - "text": " overlaps " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "134" - } - ], - "ref_id": "135" - } - ], - "ref_id": "135" - } - ], - "node_type": "Query", - "ref_id": "136" - } - ], - "ref_id": "137" - } - ], - "define_name": "Neuropathy Diagnoses" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Active ACEI or ARB\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Medication, Active\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"ACE Inhibitor or ARB\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "138" - } - ], - "node_type": "Retrieve", - "ref_id": "138" - }, - { - "children": [ - { - "text": " ACEIorARB" - } - ] - } - ], - "ref_id": "139" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "ACEIorARB" - } - ] - } - ], - "ref_id": "140" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "141" - } - ], - "node_type": "Property", - "ref_id": "141" - }, - { - "children": [ - { - "text": " overlaps " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "142" - } - ], - "ref_id": "143" - } - ], - "ref_id": "143" - } - ], - "node_type": "Query", - "ref_id": "144" - } - ], - "ref_id": "145" - } - ], - "define_name": "Active ACEI or ARB" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Renal Procedures\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Procedure, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Kidney Transplant\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "146" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Procedure, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Vascular Access for Dialysis\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "147" - } - ], - "node_type": "Union", - "ref_id": "148" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Procedure, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Dialysis Services\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "149" - } - ], - "node_type": "Union", - "ref_id": "150" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Union", - "ref_id": "150" - } - ], - "ref_id": "151" - } - ], - "define_name": "Renal Procedures" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Renal Interventions\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Intervention, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Other Services Related to Dialysis\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "152" - }, - { - "children": [ - { - "text": " union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Intervention, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Dialysis Education\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "153" - } - ], - "node_type": "Union", - "ref_id": "154" - } - ], - "ref_id": "155" - } - ], - "define_name": "Renal Interventions" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"ESRD Encounter\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"ESRD Monthly Outpatient Services\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "156" - } - ], - "ref_id": "157" - } - ], - "define_name": "ESRD Encounter" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Protein Urea Lab Test\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Laboratory Test, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Urine Protein Tests\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "158" - } - ], - "node_type": "Retrieve", - "ref_id": "158" - }, - { - "children": [ - { - "text": " ProteinUrea" - } - ] - } - ], - "ref_id": "159" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "ProteinUrea" - } - ] - } - ], - "ref_id": "160" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "result" - } - ] - } - ], - "node_type": "Property", - "ref_id": "161" - } - ], - "node_type": "Property", - "ref_id": "161" - }, - { - "children": [ - { - "text": " is not null" - } - ] - } - ], - "ref_id": "162" - } - ], - "ref_id": "162" - } - ], - "node_type": "Query", - "ref_id": "163" - } - ], - "ref_id": "164" - } - ], - "define_name": "Protein Urea Lab Test" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Nephropathy Screenings\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Renal Procedures\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "165" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Renal Interventions\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "166" - }, - { - "children": [ - { - "text": " RenalInterventions" - } - ] - } - ], - "ref_id": "167" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "return " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Procedure, Performed\" {" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod: " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "RenalInterventions" - } - ] - } - ], - "ref_id": "168" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "ref_id": "169" - } - ], - "ref_id": "169" - } - ] - }, - { - "children": [ - { - "text": "}" - } - ] - } - ], - "node_type": "Instance", - "ref_id": "170" - } - ], - "ref_id": "171" - } - ], - "node_type": "Query", - "ref_id": "172" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Query", - "ref_id": "172" - } - ], - "node_type": "Union", - "ref_id": "173" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"ESRD Encounter\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "174" - }, - { - "children": [ - { - "text": " ESRDEncounter" - } - ] - } - ], - "ref_id": "175" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "return " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Procedure, Performed\" {" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod: " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "ESRDEncounter" - } - ] - } - ], - "ref_id": "176" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "ref_id": "177" - } - ], - "ref_id": "177" - } - ] - }, - { - "children": [ - { - "text": "}" - } - ] - } - ], - "node_type": "Instance", - "ref_id": "178" - } - ], - "ref_id": "179" - } - ], - "node_type": "Query", - "ref_id": "180" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Query", - "ref_id": "180" - } - ], - "node_type": "Union", - "ref_id": "181" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Protein Urea Lab Test\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "182" - }, - { - "children": [ - { - "text": " ProteinUrea" - } - ] - } - ], - "ref_id": "183" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "return " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Procedure, Performed\" {" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod: " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "ProteinUrea" - } - ] - } - ], - "ref_id": "184" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "ref_id": "185" - } - ], - "ref_id": "185" - } - ] - }, - { - "children": [ - { - "text": "}" - } - ] - } - ], - "node_type": "Instance", - "ref_id": "186" - } - ], - "ref_id": "187" - } - ], - "node_type": "Query", - "ref_id": "188" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Query", - "ref_id": "188" - } - ], - "node_type": "Union", - "ref_id": "189" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "Union", - "ref_id": "189" - }, - { - "children": [ - { - "text": " Screenings" - } - ] - } - ], - "ref_id": "190" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Screenings" - } - ] - } - ], - "ref_id": "191" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "192" - } - ], - "node_type": "Property", - "ref_id": "192" - }, - { - "children": [ - { - "text": " during " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "193" - } - ], - "ref_id": "194" - } - ], - "ref_id": "194" - } - ], - "node_type": "Query", - "ref_id": "195" - } - ], - "ref_id": "196" - } - ], - "define_name": "Nephropathy Screenings" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Numerator\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "exists" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Active ACEI or ARB\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "197" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "197" - } - ], - "node_type": "Exists", - "ref_id": "198" - }, - { - "children": [ - { - "text": "\n or " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "exists" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Neuropathy Diagnoses\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "199" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "199" - } - ], - "node_type": "Exists", - "ref_id": "200" - } - ], - "node_type": "Or", - "ref_id": "201" - }, - { - "children": [ - { - "text": "\n or " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "exists" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Nephropathy Screenings\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "202" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "202" - } - ], - "node_type": "Exists", - "ref_id": "203" - } - ], - "node_type": "Or", - "ref_id": "204" - } - ], - "ref_id": "205" - } - ], - "define_name": "Numerator" - } - ], - "identifier": { - "id": "TestCMS134", - "version": "5.1.008" - } - }, - "is_main_library": true, - "statement_dependencies": [ - { - "_id": "609d8393b789027a3282e443", - "statement_name": "Patient" - }, - { - "_id": "609d8393b789027a3282e444", - "statement_name": "SDE Ethnicity" - }, - { - "_id": "609d8393b789027a3282e445", - "statement_name": "SDE Payer" - }, - { - "_id": "609d8393b789027a3282e446", - "statement_name": "SDE Race" - }, - { - "_id": "609d8393b789027a3282e447", - "statement_name": "SDE Sex" - }, - { - "_id": "609d8393b789027a3282e448", - "statement_name": "Qualifying Encounter" - }, - { - "_id": "609d8393b789027a3282e449", - "statement_name": "Initial Population", - "statement_references": [ - { - "_id": "609d8393b789027a3282e44a", - "library_name": "TestCMS134", - "statement_name": "Qualifying Encounter" - }, - { - "_id": "609d8393b789027a3282e44b", - "library_name": "TestCMS134", - "statement_name": "Patient" - } - ] - }, - { - "_id": "609d8393b789027a3282e44c", - "statement_name": "Denominator", - "statement_references": [ - { - "_id": "609d8393b789027a3282e44d", - "library_name": "TestCMS134", - "statement_name": "Initial Population" - } - ] - }, - { - "_id": "609d8393b789027a3282e44e", - "statement_name": "Denominator Exclusions" - }, - { - "_id": "609d8393b789027a3282e44f", - "statement_name": "Neuropathy Diagnoses" - }, - { - "_id": "609d8393b789027a3282e450", - "statement_name": "Active ACEI or ARB" - }, - { - "_id": "609d8393b789027a3282e451", - "statement_name": "Renal Procedures" - }, - { - "_id": "609d8393b789027a3282e452", - "statement_name": "Renal Interventions" - }, - { - "_id": "609d8393b789027a3282e453", - "statement_name": "ESRD Encounter" - }, - { - "_id": "609d8393b789027a3282e454", - "statement_name": "Protein Urea Lab Test" - }, - { - "_id": "609d8393b789027a3282e455", - "statement_name": "Nephropathy Screenings", - "statement_references": [ - { - "_id": "609d8393b789027a3282e456", - "library_name": "TestCMS134", - "statement_name": "Renal Procedures" - }, - { - "_id": "609d8393b789027a3282e457", - "library_name": "TestCMS134", - "statement_name": "Renal Interventions" - }, - { - "_id": "609d8393b789027a3282e458", - "library_name": "TestCMS134", - "statement_name": "ESRD Encounter" - }, - { - "_id": "609d8393b789027a3282e459", - "library_name": "TestCMS134", - "statement_name": "Protein Urea Lab Test" - } - ] - }, - { - "_id": "609d8393b789027a3282e45a", - "statement_name": "Numerator", - "statement_references": [ - { - "_id": "609d8393b789027a3282e45b", - "library_name": "TestCMS134", - "statement_name": "Active ACEI or ARB" - }, - { - "_id": "609d8393b789027a3282e45c", - "library_name": "TestCMS134", - "statement_name": "Neuropathy Diagnoses" - }, - { - "_id": "609d8393b789027a3282e45d", - "library_name": "TestCMS134", - "statement_name": "Nephropathy Screenings" - } - ] - } - ] - } - ], - "source_data_criteria": [ - { - "_id": "609d8393b789027a3282e45e", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: Face-to-FaceInteraction", - "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1048" - }, - { - "_id": "609d8393b789027a3282e45f", - "dataElementCodes": [ - - ], - "_type": "QDM::ProcedurePerformed", - "qdmTitle": "Procedure, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.67", - "qdmCategory": "procedure", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Procedure, Performed: DialysisServices", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1013" - }, - { - "_id": "609d8393b789027a3282e460", - "dataElementCodes": [ - - ], - "_type": "QDM::ProcedurePerformed", - "qdmTitle": "Procedure, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.67", - "qdmCategory": "procedure", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Procedure, Performed: KidneyTransplant", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1012" - }, - { - "_id": "609d8393b789027a3282e461", - "dataElementCodes": [ - - ], - "_type": "QDM::PatientCharacteristicSex", - "qdmTitle": "Patient Characteristic Sex", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.55", - "qdmCategory": "patient_characteristic", - "qdmStatus": "gender", - "qdmVersion": "5.6", - "description": "Patient Characteristic Sex: ONCAdministrativeSex", - "codeListId": "2.16.840.1.113762.1.4.1" - }, - { - "_id": "609d8393b789027a3282e462", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: ESRDMonthlyOutpatientServices", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1014" - }, - { - "_id": "609d8393b789027a3282e463", - "dataElementCodes": [ - - ], - "_type": "QDM::MedicationActive", - "qdmTitle": "Medication, Active", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.44", - "qdmCategory": "medication", - "qdmStatus": "active", - "qdmVersion": "5.6", - "description": "Medication, Active: ACEInhibitororARB", - "codeListId": "2.16.840.1.113883.3.526.3.1139" - }, - { - "_id": "609d8393b789027a3282e464", - "dataElementCodes": [ - - ], - "_type": "QDM::Diagnosis", - "qdmTitle": "Diagnosis", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "qrdaOid": "2.16.840.1.113883.10.20.24.3.135", - "qdmCategory": "condition", - "qdmVersion": "5.6", - "description": "Diagnosis: KidneyFailure", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1028" - }, - { - "_id": "609d8393b789027a3282e465", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: PreventiveCareServices-EstablishedOfficeVisit18andUp", - "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1025" - }, - { - "_id": "609d8393b789027a3282e466", - "dataElementCodes": [ - - ], - "_type": "QDM::Diagnosis", - "qdmTitle": "Diagnosis", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "qrdaOid": "2.16.840.1.113883.10.20.24.3.135", - "qdmCategory": "condition", - "qdmVersion": "5.6", - "description": "Diagnosis: DiabeticNephropathy", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1004" - }, - { - "_id": "609d8393b789027a3282e467", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: HomeHealthcareServices", - "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1016" - }, - { - "_id": "609d8393b789027a3282e468", - "dataElementCodes": [ - - ], - "_type": "QDM::InterventionPerformed", - "qdmTitle": "Intervention, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.36", - "qdmCategory": "intervention", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Intervention, Performed: OtherServicesRelatedtoDialysis", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1015" - }, - { - "_id": "609d8393b789027a3282e469", - "dataElementCodes": [ - - ], - "_type": "QDM::PatientCharacteristicRace", - "qdmTitle": "Patient Characteristic Race", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.59", - "qdmCategory": "patient_characteristic", - "qdmStatus": "race", - "qdmVersion": "5.6", - "description": "Patient Characteristic Race: Race", - "codeListId": "2.16.840.1.114222.4.11.836" - }, - { - "_id": "609d8393b789027a3282e46a", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: OfficeVisit", - "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1001" - }, - { - "_id": "609d8393b789027a3282e46b", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: EncounterInpatient", - "codeListId": "2.16.840.1.113883.3.666.5.307" - }, - { - "_id": "609d8393b789027a3282e46c", - "dataElementCodes": [ - - ], - "_type": "QDM::Diagnosis", - "qdmTitle": "Diagnosis", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "qrdaOid": "2.16.840.1.113883.10.20.24.3.135", - "qdmCategory": "condition", - "qdmVersion": "5.6", - "description": "Diagnosis: HypertensiveChronicKidneyDisease", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1017" - }, - { - "_id": "609d8393b789027a3282e46d", - "dataElementCodes": [ - - ], - "_type": "QDM::PatientCharacteristicPayer", - "qdmTitle": "Patient Characteristic Payer", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.58", - "qdmCategory": "patient_characteristic", - "qdmStatus": "payer", - "qdmVersion": "5.6", - "description": "Patient Characteristic Payer: Payer", - "codeListId": "2.16.840.1.114222.4.11.3591" - }, - { - "_id": "609d8393b789027a3282e46e", - "dataElementCodes": [ - - ], - "_type": "QDM::InterventionOrder", - "qdmTitle": "Intervention, Order", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.35", - "qdmCategory": "intervention", - "qdmStatus": "order", - "qdmVersion": "5.6", - "description": "Intervention, Order: Hospicecareambulatory", - "codeListId": "2.16.840.1.113762.1.4.1108.15" - }, - { - "_id": "609d8393b789027a3282e46f", - "dataElementCodes": [ - - ], - "_type": "QDM::InterventionPerformed", - "qdmTitle": "Intervention, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.36", - "qdmCategory": "intervention", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Intervention, Performed: Hospicecareambulatory", - "codeListId": "2.16.840.1.113762.1.4.1108.15" - }, - { - "_id": "609d8393b789027a3282e470", - "dataElementCodes": [ - - ], - "_type": "QDM::Diagnosis", - "qdmTitle": "Diagnosis", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "qrdaOid": "2.16.840.1.113883.10.20.24.3.135", - "qdmCategory": "condition", - "qdmVersion": "5.6", - "description": "Diagnosis: GlomerulonephritisandNephroticSyndrome", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1018" - }, - { - "_id": "609d8393b789027a3282e471", - "dataElementCodes": [ - - ], - "_type": "QDM::InterventionPerformed", - "qdmTitle": "Intervention, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.36", - "qdmCategory": "intervention", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Intervention, Performed: DialysisEducation", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1016" - }, - { - "_id": "609d8393b789027a3282e472", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: AnnualWellnessVisit", - "codeListId": "2.16.840.1.113883.3.526.3.1240" - }, - { - "_id": "609d8393b789027a3282e473", - "dataElementCodes": [ - - ], - "_type": "QDM::ProcedurePerformed", - "qdmTitle": "Procedure, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.67", - "qdmCategory": "procedure", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Procedure, Performed: VascularAccessforDialysis", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1011" - }, - { - "_id": "609d8393b789027a3282e474", - "dataElementCodes": [ - - ], - "_type": "QDM::PatientCharacteristicEthnicity", - "qdmTitle": "Patient Characteristic Ethnicity", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.56", - "qdmCategory": "patient_characteristic", - "qdmStatus": "ethnicity", - "qdmVersion": "5.6", - "description": "Patient Characteristic Ethnicity: Ethnicity", - "codeListId": "2.16.840.1.114222.4.11.837" - }, - { - "_id": "609d8393b789027a3282e475", - "dataElementCodes": [ - - ], - "_type": "QDM::LaboratoryTestPerformed", - "qdmTitle": "Laboratory Test, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.42", - "qdmCategory": "laboratory_test", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Laboratory Test, Performed: UrineProteinTests", - "codeListId": "2.16.840.1.113883.3.464.1003.109.12.1024" - }, - { - "_id": "609d8393b789027a3282e476", - "dataElementCodes": [ - - ], - "_type": "QDM::Diagnosis", - "qdmTitle": "Diagnosis", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "qrdaOid": "2.16.840.1.113883.10.20.24.3.135", - "qdmCategory": "condition", - "qdmVersion": "5.6", - "description": "Diagnosis: Diabetes", - "codeListId": "2.16.840.1.113883.3.464.1003.103.12.1001" - }, - { - "_id": "609d8393b789027a3282e477", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: PreventiveCareServices-InitialOfficeVisit18andUp", - "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1023" - }, - { - "_id": "609d8393b789027a3282e478", - "dataElementCodes": [ - - ], - "_type": "QDM::Diagnosis", - "qdmTitle": "Diagnosis", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "qrdaOid": "2.16.840.1.113883.10.20.24.3.135", - "qdmCategory": "condition", - "qdmVersion": "5.6", - "description": "Diagnosis: Proteinuria", - "codeListId": "2.16.840.1.113883.3.526.3.1003" - } - ], - "population_sets": [ - { - "_id": "609d8393b789027a3282e479", - "title": "Population Criteria Section", - "population_set_id": "PopulationSet_1", - "populations": { - "_id": "609d8393b789027a3282e47a", - "_type": "CQM::ProportionPopulationMap", - "IPP": { - "_id": "609d8393b789027a3282e47b", - "library_name": "TestCMS134", - "statement_name": "Initial Population", - "hqmf_id": "38A161FC-1D7A-4E1D-9424-C8866AD1EFFC" - }, - "DENOM": { - "_id": "609d8393b789027a3282e47c", - "library_name": "TestCMS134", - "statement_name": "Denominator", - "hqmf_id": "E2FBBA8F-8570-44EE-AB22-318EB51BE10C" - }, - "DENEX": { - "_id": "609d8393b789027a3282e47d", - "library_name": "TestCMS134", - "statement_name": "Denominator Exclusions", - "hqmf_id": "797B54C6-C817-49FF-869E-5EA7FB8FA9DF" - }, - "NUMER": { - "_id": "609d8393b789027a3282e47e", - "library_name": "TestCMS134", - "statement_name": "Numerator", - "hqmf_id": "10F7604E-723B-4281-BE79-5A93BAFB5A3F" - } - }, - "supplemental_data_elements": [ - { - "_id": "609d8393b789027a3282e47f", - "library_name": "TestCMS134", - "statement_name": "SDE Ethnicity", - "hqmf_id": "3266F185-BCF7-4F0A-A959-66F3C0F5001B" - }, - { - "_id": "609d8393b789027a3282e480", - "library_name": "TestCMS134", - "statement_name": "SDE Payer", - "hqmf_id": "BDF3C7D4-6377-459A-8097-531F37FBF412" - }, - { - "_id": "609d8393b789027a3282e481", - "library_name": "TestCMS134", - "statement_name": "SDE Race", - "hqmf_id": "C9170EBB-DBBF-4C33-A281-247B36DE0568" - }, - { - "_id": "609d8393b789027a3282e482", - "library_name": "TestCMS134", - "statement_name": "SDE Sex", - "hqmf_id": "3AA8B198-2189-4EE9-AC41-1F682D496C43" - } - ] - } - ], - "value_sets": [ - { - "_id": "609d8393b789027a3282e424", - "concepts": [ - { - "_id": "609d8393b789027a3282e483", - "code": "F", - "code_system_name": "AdministrativeGender", - "code_system_oid": "2.16.840.1.113883.5.1", - "code_system_version": "HL7V3.0_2018-08", - "display_name": "Female" - }, - { - "_id": "609d8393b789027a3282e484", - "code": "M", - "code_system_name": "AdministrativeGender", - "code_system_oid": "2.16.840.1.113883.5.1", - "code_system_version": "HL7V3.0_2018-08", - "display_name": "Male" - } - ], - "display_name": "ONC Administrative Sex", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113762.1.4.1", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e425", - "concepts": [ - { - "_id": "609d8393b789027a3282e485", - "code": "1002-5", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "American Indian or Alaska Native" - }, - { - "_id": "609d8393b789027a3282e486", - "code": "2028-9", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Asian" - }, - { - "_id": "609d8393b789027a3282e487", - "code": "2054-5", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Black or African American" - }, - { - "_id": "609d8393b789027a3282e488", - "code": "2076-8", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Native Hawaiian or Other Pacific Islander" - }, - { - "_id": "609d8393b789027a3282e489", - "code": "2106-3", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "White" - }, - { - "_id": "609d8393b789027a3282e48a", - "code": "2131-1", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Other Race" - } - ], - "display_name": "Race", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.114222.4.11.836", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e426", - "concepts": [ - { - "_id": "609d8393b789027a3282e48b", - "code": "2135-2", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Hispanic or Latino" - }, - { - "_id": "609d8393b789027a3282e48c", - "code": "2186-5", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Not Hispanic or Latino" - } - ], - "display_name": "Ethnicity", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.114222.4.11.837", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e427", - "concepts": [ - { - "_id": "609d8393b789027a3282e48d", - "code": "1", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "MEDICARE" - }, - { - "_id": "609d8393b789027a3282e48e", - "code": "11", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare (Managed Care)" - }, - { - "_id": "609d8393b789027a3282e48f", - "code": "111", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare HMO" - }, - { - "_id": "609d8393b789027a3282e490", - "code": "112", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare PPO" - }, - { - "_id": "609d8393b789027a3282e491", - "code": "113", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare POS" - }, - { - "_id": "609d8393b789027a3282e492", - "code": "119", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Managed Care Other" - }, - { - "_id": "609d8393b789027a3282e493", - "code": "12", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare (Non-managed Care)" - }, - { - "_id": "609d8393b789027a3282e494", - "code": "121", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare FFS" - }, - { - "_id": "609d8393b789027a3282e495", - "code": "122", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Drug Benefit" - }, - { - "_id": "609d8393b789027a3282e496", - "code": "123", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Medical Savings Account (MSA)" - }, - { - "_id": "609d8393b789027a3282e497", - "code": "129", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Non-managed Care Other" - }, - { - "_id": "609d8393b789027a3282e498", - "code": "13", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Hospice" - }, - { - "_id": "609d8393b789027a3282e499", - "code": "14", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Dual Eligibility Medicare/Medicaid Organization" - }, - { - "_id": "609d8393b789027a3282e49a", - "code": "19", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Other" - }, - { - "_id": "609d8393b789027a3282e49b", - "code": "191", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Pharmacy Benefit Manager" - }, - { - "_id": "609d8393b789027a3282e49c", - "code": "2", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "MEDICAID" - }, - { - "_id": "609d8393b789027a3282e49d", - "code": "21", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid (Managed Care)" - }, - { - "_id": "609d8393b789027a3282e49e", - "code": "211", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid HMO" - }, - { - "_id": "609d8393b789027a3282e49f", - "code": "212", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid PPO" - }, - { - "_id": "609d8393b789027a3282e4a0", - "code": "213", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid PCCM (Primary Care Case Management)" - }, - { - "_id": "609d8393b789027a3282e4a1", - "code": "219", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid Managed Care Other" - }, - { - "_id": "609d8393b789027a3282e4a2", - "code": "22", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid (Non-managed Care Plan)" - }, - { - "_id": "609d8393b789027a3282e4a3", - "code": "23", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid/SCHIP" - }, - { - "_id": "609d8393b789027a3282e4a4", - "code": "25", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid - Out of State" - }, - { - "_id": "609d8393b789027a3282e4a5", - "code": "26", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid -- Long Term Care" - }, - { - "_id": "609d8393b789027a3282e4a6", - "code": "29", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid Other" - }, - { - "_id": "609d8393b789027a3282e4a7", - "code": "291", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid Pharmacy Benefit Manager" - }, - { - "_id": "609d8393b789027a3282e4a8", - "code": "299", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid - Dental" - }, - { - "_id": "609d8393b789027a3282e4a9", - "code": "3", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "OTHER GOVERNMENT (Federal/State/Local) (excluding Department of Corrections)" - }, - { - "_id": "609d8393b789027a3282e4aa", - "code": "31", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Department of Defense" - }, - { - "_id": "609d8393b789027a3282e4ab", - "code": "311", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE (CHAMPUS)" - }, - { - "_id": "609d8393b789027a3282e4ac", - "code": "3111", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE Prime--HMO" - }, - { - "_id": "609d8393b789027a3282e4ad", - "code": "3112", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE Extra--PPO" - }, - { - "_id": "609d8393b789027a3282e4ae", - "code": "3113", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE Standard - Fee For Service" - }, - { - "_id": "609d8393b789027a3282e4af", - "code": "3114", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE For Life--Medicare Supplement" - }, - { - "_id": "609d8393b789027a3282e4b0", - "code": "3115", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE Reserve Select" - }, - { - "_id": "609d8393b789027a3282e4b1", - "code": "3116", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Uniformed Services Family Health Plan (USFHP) -- HMO" - }, - { - "_id": "609d8393b789027a3282e4b2", - "code": "3119", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Department of Defense - (other)" - }, - { - "_id": "609d8393b789027a3282e4b3", - "code": "312", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Military Treatment Facility" - }, - { - "_id": "609d8393b789027a3282e4b4", - "code": "3121", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Enrolled Prime--HMO" - }, - { - "_id": "609d8393b789027a3282e4b5", - "code": "3122", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Non-enrolled Space Available" - }, - { - "_id": "609d8393b789027a3282e4b6", - "code": "3123", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE For Life (TFL)" - }, - { - "_id": "609d8393b789027a3282e4b7", - "code": "313", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Dental --Stand Alone" - }, - { - "_id": "609d8393b789027a3282e4b8", - "code": "32", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Department of Veterans Affairs" - }, - { - "_id": "609d8393b789027a3282e4b9", - "code": "321", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Veteran care--Care provided to Veterans" - }, - { - "_id": "609d8393b789027a3282e4ba", - "code": "3211", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Direct Care--Care provided in VA facilities" - }, - { - "_id": "609d8393b789027a3282e4bb", - "code": "3212", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indirect Care--Care provided outside VA facilities" - }, - { - "_id": "609d8393b789027a3282e4bc", - "code": "32121", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Fee Basis" - }, - { - "_id": "609d8393b789027a3282e4bd", - "code": "32122", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Foreign Fee/Foreign Medical Program (FMP)" - }, - { - "_id": "609d8393b789027a3282e4be", - "code": "32123", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Contract Nursing Home/Community Nursing Home" - }, - { - "_id": "609d8393b789027a3282e4bf", - "code": "32124", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "State Veterans Home" - }, - { - "_id": "609d8393b789027a3282e4c0", - "code": "32125", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Sharing Agreements" - }, - { - "_id": "609d8393b789027a3282e4c1", - "code": "32126", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Federal Agency" - }, - { - "_id": "609d8393b789027a3282e4c2", - "code": "32127", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Dental Care" - }, - { - "_id": "609d8393b789027a3282e4c3", - "code": "32128", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Vision Care" - }, - { - "_id": "609d8393b789027a3282e4c4", - "code": "322", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Non-veteran care" - }, - { - "_id": "609d8393b789027a3282e4c5", - "code": "3221", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Civilian Health and Medical Program for the VA (CHAMPVA)" - }, - { - "_id": "609d8393b789027a3282e4c6", - "code": "3222", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Spina Bifida Health Care Program (SB)" - }, - { - "_id": "609d8393b789027a3282e4c7", - "code": "3223", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Children of Women Vietnam Veterans (CWVV)" - }, - { - "_id": "609d8393b789027a3282e4c8", - "code": "3229", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other non-veteran care" - }, - { - "_id": "609d8393b789027a3282e4c9", - "code": "33", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Health Service or Tribe" - }, - { - "_id": "609d8393b789027a3282e4ca", - "code": "331", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Health Service -- Regular" - }, - { - "_id": "609d8393b789027a3282e4cb", - "code": "332", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Health Service -- Contract" - }, - { - "_id": "609d8393b789027a3282e4cc", - "code": "333", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Health Service - Managed Care" - }, - { - "_id": "609d8393b789027a3282e4cd", - "code": "334", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Tribe - Sponsored Coverage" - }, - { - "_id": "609d8393b789027a3282e4ce", - "code": "34", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "HRSA Program" - }, - { - "_id": "609d8393b789027a3282e4cf", - "code": "341", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Title V (MCH Block Grant)" - }, - { - "_id": "609d8393b789027a3282e4d0", - "code": "342", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Migrant Health Program" - }, - { - "_id": "609d8393b789027a3282e4d1", - "code": "343", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Ryan White Act" - }, - { - "_id": "609d8393b789027a3282e4d2", - "code": "349", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other" - }, - { - "_id": "609d8393b789027a3282e4d3", - "code": "35", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Black Lung" - }, - { - "_id": "609d8393b789027a3282e4d4", - "code": "36", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "State Government" - }, - { - "_id": "609d8393b789027a3282e4d5", - "code": "361", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "State SCHIP program (codes for individual states)" - }, - { - "_id": "609d8393b789027a3282e4d6", - "code": "362", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Specific state programs (list/ local code)" - }, - { - "_id": "609d8393b789027a3282e4d7", - "code": "369", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "State, not otherwise specified (other state)" - }, - { - "_id": "609d8393b789027a3282e4d8", - "code": "37", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Local Government" - }, - { - "_id": "609d8393b789027a3282e4d9", - "code": "371", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Local - Managed care" - }, - { - "_id": "609d8393b789027a3282e4da", - "code": "3711", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "HMO" - }, - { - "_id": "609d8393b789027a3282e4db", - "code": "3712", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "PPO" - }, - { - "_id": "609d8393b789027a3282e4dc", - "code": "3713", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "POS" - }, - { - "_id": "609d8393b789027a3282e4dd", - "code": "372", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "FFS/Indemnity" - }, - { - "_id": "609d8393b789027a3282e4de", - "code": "379", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Local, not otherwise specified (other local, county)" - }, - { - "_id": "609d8393b789027a3282e4df", - "code": "38", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Government (Federal, State, Local not specified)" - }, - { - "_id": "609d8393b789027a3282e4e0", - "code": "381", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified managed care" - }, - { - "_id": "609d8393b789027a3282e4e1", - "code": "3811", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - HMO" - }, - { - "_id": "609d8393b789027a3282e4e2", - "code": "3812", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - PPO" - }, - { - "_id": "609d8393b789027a3282e4e3", - "code": "3813", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - POS" - }, - { - "_id": "609d8393b789027a3282e4e4", - "code": "3819", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - not specified managed care" - }, - { - "_id": "609d8393b789027a3282e4e5", - "code": "382", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - FFS" - }, - { - "_id": "609d8393b789027a3282e4e6", - "code": "389", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - Other" - }, - { - "_id": "609d8393b789027a3282e4e7", - "code": "39", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Federal" - }, - { - "_id": "609d8393b789027a3282e4e8", - "code": "391", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal Employee Health Plan - Use when known" - }, - { - "_id": "609d8393b789027a3282e4e9", - "code": "4", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "DEPARTMENTS OF CORRECTIONS" - }, - { - "_id": "609d8393b789027a3282e4ea", - "code": "41", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Corrections Federal" - }, - { - "_id": "609d8393b789027a3282e4eb", - "code": "42", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Corrections State" - }, - { - "_id": "609d8393b789027a3282e4ec", - "code": "43", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Corrections Local" - }, - { - "_id": "609d8393b789027a3282e4ed", - "code": "44", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Corrections Unknown Level" - }, - { - "_id": "609d8393b789027a3282e4ee", - "code": "5", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "PRIVATE HEALTH INSURANCE" - }, - { - "_id": "609d8393b789027a3282e4ef", - "code": "51", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Managed Care (Private)" - }, - { - "_id": "609d8393b789027a3282e4f0", - "code": "511", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - HMO" - }, - { - "_id": "609d8393b789027a3282e4f1", - "code": "512", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - PPO" - }, - { - "_id": "609d8393b789027a3282e4f2", - "code": "513", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - POS" - }, - { - "_id": "609d8393b789027a3282e4f3", - "code": "514", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Exclusive Provider Organization" - }, - { - "_id": "609d8393b789027a3282e4f4", - "code": "515", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Gatekeeper PPO (GPPO)" - }, - { - "_id": "609d8393b789027a3282e4f5", - "code": "516", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - Pharmacy Benefit Manager" - }, - { - "_id": "609d8393b789027a3282e4f6", - "code": "517", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - Dental" - }, - { - "_id": "609d8393b789027a3282e4f7", - "code": "519", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Managed Care, Other (non HMO)" - }, - { - "_id": "609d8393b789027a3282e4f8", - "code": "52", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Private Health Insurance - Indemnity" - }, - { - "_id": "609d8393b789027a3282e4f9", - "code": "521", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Indemnity" - }, - { - "_id": "609d8393b789027a3282e4fa", - "code": "522", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Self-insured (ERISA) Administrative Services Only (ASO) plan" - }, - { - "_id": "609d8393b789027a3282e4fb", - "code": "523", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare supplemental policy (as second payer)" - }, - { - "_id": "609d8393b789027a3282e4fc", - "code": "524", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indemnity Insurance - Dental" - }, - { - "_id": "609d8393b789027a3282e4fd", - "code": "529", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Private health insurance--other commercial Indemnity" - }, - { - "_id": "609d8393b789027a3282e4fe", - "code": "53", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Managed Care (private) or private health insurance (indemnity), not otherwise specified" - }, - { - "_id": "609d8393b789027a3282e4ff", - "code": "54", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Organized Delivery System" - }, - { - "_id": "609d8393b789027a3282e500", - "code": "55", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Small Employer Purchasing Group" - }, - { - "_id": "609d8393b789027a3282e501", - "code": "56", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Specialized Stand Alone Plan" - }, - { - "_id": "609d8393b789027a3282e502", - "code": "561", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Dental" - }, - { - "_id": "609d8393b789027a3282e503", - "code": "562", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Vision" - }, - { - "_id": "609d8393b789027a3282e504", - "code": "59", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Private Insurance" - }, - { - "_id": "609d8393b789027a3282e505", - "code": "6", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BLUE CROSS/BLUE SHIELD" - }, - { - "_id": "609d8393b789027a3282e506", - "code": "61", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care" - }, - { - "_id": "609d8393b789027a3282e507", - "code": "611", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care -- HMO" - }, - { - "_id": "609d8393b789027a3282e508", - "code": "612", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care -- PPO" - }, - { - "_id": "609d8393b789027a3282e509", - "code": "613", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care -- POS" - }, - { - "_id": "609d8393b789027a3282e50a", - "code": "614", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care - Dental" - }, - { - "_id": "609d8393b789027a3282e50b", - "code": "619", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care -- Other" - }, - { - "_id": "609d8393b789027a3282e50c", - "code": "62", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Insurance Indemnity" - }, - { - "_id": "609d8393b789027a3282e50d", - "code": "621", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Indemnity" - }, - { - "_id": "609d8393b789027a3282e50e", - "code": "622", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Self-insured (ERISA) Administrative Services Only (ASO)Plan" - }, - { - "_id": "609d8393b789027a3282e50f", - "code": "623", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Medicare Supplemental Plan" - }, - { - "_id": "609d8393b789027a3282e510", - "code": "629", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Indemnity - Dental" - }, - { - "_id": "609d8393b789027a3282e511", - "code": "7", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "MANAGED CARE, UNSPECIFIED (to be used only if one can't distinguish public from private)" - }, - { - "_id": "609d8393b789027a3282e512", - "code": "71", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "HMO" - }, - { - "_id": "609d8393b789027a3282e513", - "code": "72", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "PPO" - }, - { - "_id": "609d8393b789027a3282e514", - "code": "73", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "POS" - }, - { - "_id": "609d8393b789027a3282e515", - "code": "79", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Managed Care" - }, - { - "_id": "609d8393b789027a3282e516", - "code": "8", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "NO PAYMENT from an Organization/Agency/Program/Private Payer Listed" - }, - { - "_id": "609d8393b789027a3282e517", - "code": "81", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Self-pay (Includes applicants for insurance and Medicaid applicants)" - }, - { - "_id": "609d8393b789027a3282e518", - "code": "82", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "No Charge" - }, - { - "_id": "609d8393b789027a3282e519", - "code": "821", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Charity" - }, - { - "_id": "609d8393b789027a3282e51a", - "code": "822", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Professional Courtesy" - }, - { - "_id": "609d8393b789027a3282e51b", - "code": "823", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Research/Clinical Trial" - }, - { - "_id": "609d8393b789027a3282e51c", - "code": "83", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Refusal to Pay/Bad Debt" - }, - { - "_id": "609d8393b789027a3282e51d", - "code": "84", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Hill Burton Free Care" - }, - { - "_id": "609d8393b789027a3282e51e", - "code": "85", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Research/Donor" - }, - { - "_id": "609d8393b789027a3282e51f", - "code": "89", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "No Payment, Other" - }, - { - "_id": "609d8393b789027a3282e520", - "code": "9", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "MISCELLANEOUS/OTHER" - }, - { - "_id": "609d8393b789027a3282e521", - "code": "91", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Foreign National" - }, - { - "_id": "609d8393b789027a3282e522", - "code": "92", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other (Non-government)" - }, - { - "_id": "609d8393b789027a3282e523", - "code": "93", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Disability Insurance" - }, - { - "_id": "609d8393b789027a3282e524", - "code": "94", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Long-term Care Insurance" - }, - { - "_id": "609d8393b789027a3282e525", - "code": "95", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Compensation" - }, - { - "_id": "609d8393b789027a3282e526", - "code": "951", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Comp HMO" - }, - { - "_id": "609d8393b789027a3282e527", - "code": "953", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Comp Fee-for-Service" - }, - { - "_id": "609d8393b789027a3282e528", - "code": "954", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Comp Other Managed Care" - }, - { - "_id": "609d8393b789027a3282e529", - "code": "959", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Comp, Other unspecified" - }, - { - "_id": "609d8393b789027a3282e52a", - "code": "96", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Auto Insurance (includes no fault)" - }, - { - "_id": "609d8393b789027a3282e52b", - "code": "97", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Legal Liability / Liability Insurance" - }, - { - "_id": "609d8393b789027a3282e52c", - "code": "98", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other specified but not otherwise classifiable (includes Hospice - Unspecified plan)" - }, - { - "_id": "609d8393b789027a3282e52d", - "code": "99", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "No Typology Code available for payment source" - }, - { - "_id": "609d8393b789027a3282e52e", - "code": "9999", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Unavailable / No Payer Specified / Blank" - } - ], - "display_name": "Payer", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.114222.4.11.3591", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e428", - "concepts": [ - { - "_id": "609d8393b789027a3282e52f", - "code": "1000001", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Hydrochlorothiazide 25 MG / Olmesartan medoxomil 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e530", - "code": "1091646", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "azilsartan medoxomil 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e531", - "code": "1091652", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "azilsartan medoxomil 80 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e532", - "code": "1235144", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "azilsartan medoxomil 40 MG / Chlorthalidone 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e533", - "code": "1235151", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "azilsartan medoxomil 40 MG / Chlorthalidone 25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e534", - "code": "1299859", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / Moexipril hydrochloride 15 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e535", - "code": "1299871", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / Moexipril hydrochloride 7.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e536", - "code": "1299890", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 25 MG / Moexipril hydrochloride 15 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e537", - "code": "1299896", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Moexipril hydrochloride 15 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e538", - "code": "1299897", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Moexipril hydrochloride 7.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e539", - "code": "1435624", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Enalapril Maleate 1 MG/ML Oral Solution" - }, - { - "_id": "609d8393b789027a3282e53a", - "code": "153822", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "candesartan cilexetil 4 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e53b", - "code": "153823", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "candesartan cilexetil 8 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e53c", - "code": "1600716", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Perindopril arginine 14 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e53d", - "code": "1600724", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 2.5 MG / Perindopril arginine 3.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e53e", - "code": "1600728", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Perindopril arginine 7 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e53f", - "code": "1656340", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "sacubitril 24 MG / valsartan 26 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e540", - "code": "1656349", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "sacubitril 49 MG / valsartan 51 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e541", - "code": "1656354", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "sacubitril 97 MG / valsartan 103 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e542", - "code": "197436", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Captopril 25 MG / Hydrochlorothiazide 15 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e543", - "code": "197437", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Captopril 25 MG / Hydrochlorothiazide 25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e544", - "code": "197438", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Captopril 50 MG / Hydrochlorothiazide 15 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e545", - "code": "197439", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Captopril 50 MG / Hydrochlorothiazide 25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e546", - "code": "197884", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lisinopril 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e547", - "code": "197885", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / Lisinopril 10 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e548", - "code": "197886", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / Lisinopril 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e549", - "code": "197887", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 25 MG / Lisinopril 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e54a", - "code": "198188", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Ramipril 2.5 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e54b", - "code": "198189", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Ramipril 5 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e54c", - "code": "199351", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "trandolapril 2 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e54d", - "code": "199352", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "trandolapril 4 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e54e", - "code": "199353", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "trandolapril 1 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e54f", - "code": "199622", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "trandolapril 0.5 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e550", - "code": "199707", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Cilazapril 0.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e551", - "code": "199708", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Cilazapril 2.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e552", - "code": "199709", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Cilazapril 5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e553", - "code": "199816", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "trandolapril 1 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e554", - "code": "199817", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "trandolapril 2 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e555", - "code": "199937", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Cilazapril 1 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e556", - "code": "200094", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "irbesartan 75 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e557", - "code": "200095", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "irbesartan 150 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e558", - "code": "200096", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "irbesartan 300 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e559", - "code": "200284", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / valsartan 80 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e55a", - "code": "200285", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / valsartan 160 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e55b", - "code": "205304", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "telmisartan 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e55c", - "code": "205305", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "telmisartan 80 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e55d", - "code": "205326", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lisinopril 30 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e55e", - "code": "249851", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Cilazapril 5 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e55f", - "code": "261962", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Ramipril 10 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e560", - "code": "282755", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "telmisartan 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e561", - "code": "283316", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / telmisartan 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e562", - "code": "283317", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / telmisartan 80 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e563", - "code": "308962", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Captopril 100 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e564", - "code": "308963", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Captopril 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e565", - "code": "308964", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Captopril 50 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e566", - "code": "310140", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "eprosartan 600 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e567", - "code": "310792", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / irbesartan 150 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e568", - "code": "310793", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / irbesartan 300 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e569", - "code": "310796", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / quinapril 10 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e56a", - "code": "310797", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / quinapril 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e56b", - "code": "310809", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 25 MG / quinapril 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e56c", - "code": "311353", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lisinopril 2.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e56d", - "code": "311354", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lisinopril 5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e56e", - "code": "312748", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "quinapril 10 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e56f", - "code": "312749", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "quinapril 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e570", - "code": "312750", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "quinapril 5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e571", - "code": "314076", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lisinopril 10 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e572", - "code": "314077", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lisinopril 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e573", - "code": "314203", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "quinapril 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e574", - "code": "317173", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Captopril 25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e575", - "code": "349199", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "valsartan 80 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e576", - "code": "349200", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "valsartan 320 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e577", - "code": "349201", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "valsartan 160 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e578", - "code": "349353", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 25 MG / valsartan 160 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e579", - "code": "349373", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Olmesartan medoxomil 5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e57a", - "code": "349401", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Olmesartan medoxomil 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e57b", - "code": "349405", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Olmesartan medoxomil 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e57c", - "code": "349483", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "valsartan 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e57d", - "code": "351292", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "eprosartan 600 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e57e", - "code": "351293", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "eprosartan 600 MG / Hydrochlorothiazide 25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e57f", - "code": "403853", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / Olmesartan medoxomil 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e580", - "code": "403854", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / Olmesartan medoxomil 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e581", - "code": "403855", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 25 MG / Olmesartan medoxomil 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e582", - "code": "411434", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "trandolapril 4 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e583", - "code": "477130", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 25 MG / telmisartan 80 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e584", - "code": "485471", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 25 MG / irbesartan 300 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e585", - "code": "577776", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "candesartan cilexetil 16 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e586", - "code": "578325", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "candesartan cilexetil 16 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e587", - "code": "578330", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "candesartan cilexetil 32 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e588", - "code": "636042", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / valsartan 320 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e589", - "code": "636045", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 25 MG / valsartan 320 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e58a", - "code": "639537", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "candesartan cilexetil 32 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e58b", - "code": "722126", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / valsartan 160 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e58c", - "code": "722131", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / valsartan 320 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e58d", - "code": "722134", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / valsartan 160 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e58e", - "code": "722137", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / valsartan 320 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e58f", - "code": "730861", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Olmesartan medoxomil 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e590", - "code": "730866", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Olmesartan medoxomil 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e591", - "code": "730869", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Olmesartan medoxomil 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e592", - "code": "730872", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Olmesartan medoxomil 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e593", - "code": "802749", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "candesartan cilexetil 32 MG / Hydrochlorothiazide 25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e594", - "code": "845488", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Ramipril 1.25 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e595", - "code": "848131", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Hydrochlorothiazide 12.5 MG / valsartan 160 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e596", - "code": "848135", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Hydrochlorothiazide 25 MG / valsartan 320 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e597", - "code": "848140", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Hydrochlorothiazide 12.5 MG / valsartan 160 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e598", - "code": "848145", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Hydrochlorothiazide 25 MG / valsartan 160 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e599", - "code": "848151", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Hydrochlorothiazide 25 MG / valsartan 160 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e59a", - "code": "854925", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Perindopril Erbumine 8 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e59b", - "code": "854984", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Perindopril Erbumine 2 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e59c", - "code": "854988", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Perindopril Erbumine 4 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e59d", - "code": "857166", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fosinopril Sodium 10 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e59e", - "code": "857169", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fosinopril Sodium 10 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e59f", - "code": "857174", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fosinopril Sodium 20 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a0", - "code": "857183", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fosinopril Sodium 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a1", - "code": "857187", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fosinopril Sodium 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a2", - "code": "858804", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Enalapril Maleate 2.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a3", - "code": "858810", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Enalapril Maleate 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a4", - "code": "858813", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Enalapril Maleate 5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a5", - "code": "858817", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Enalapril Maleate 10 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a6", - "code": "858824", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Enalapril Maleate 5 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a7", - "code": "858828", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Enalapril Maleate 10 MG / Hydrochlorothiazide 25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a8", - "code": "858921", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Enalapril Maleate 20 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5a9", - "code": "876514", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / telmisartan 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5aa", - "code": "876519", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / telmisartan 80 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5ab", - "code": "876524", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / telmisartan 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5ac", - "code": "876529", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / telmisartan 80 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5ad", - "code": "897781", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR trandolapril 1 MG / Verapamil hydrochloride 240 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5ae", - "code": "897783", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR trandolapril 2 MG / Verapamil hydrochloride 180 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5af", - "code": "897844", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR trandolapril 2 MG / Verapamil hydrochloride 240 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5b0", - "code": "897853", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR trandolapril 4 MG / Verapamil hydrochloride 240 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5b1", - "code": "898342", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Benazepril hydrochloride 20 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e5b2", - "code": "898346", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Benazepril hydrochloride 40 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e5b3", - "code": "898350", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 2.5 MG / Benazepril hydrochloride 10 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e5b4", - "code": "898353", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Benazepril hydrochloride 10 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e5b5", - "code": "898356", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Benazepril hydrochloride 20 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e5b6", - "code": "898359", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Benazepril hydrochloride 40 MG Oral Capsule" - }, - { - "_id": "609d8393b789027a3282e5b7", - "code": "898362", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Benazepril hydrochloride 10 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5b8", - "code": "898367", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Benazepril hydrochloride 20 MG / Hydrochlorothiazide 12.5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5b9", - "code": "898372", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Benazepril hydrochloride 20 MG / Hydrochlorothiazide 25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5ba", - "code": "898378", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Benazepril hydrochloride 5 MG / Hydrochlorothiazide 6.25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5bb", - "code": "898687", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Benazepril hydrochloride 10 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5bc", - "code": "898690", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Benazepril hydrochloride 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5bd", - "code": "898719", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Benazepril hydrochloride 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5be", - "code": "898723", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Benazepril hydrochloride 5 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5bf", - "code": "979464", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / Losartan Potassium 100 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5c0", - "code": "979468", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 12.5 MG / Losartan Potassium 50 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5c1", - "code": "979471", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Hydrochlorothiazide 25 MG / Losartan Potassium 100 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5c2", - "code": "979480", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Losartan Potassium 100 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5c3", - "code": "979485", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Losartan Potassium 25 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5c4", - "code": "979492", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Losartan Potassium 50 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5c5", - "code": "999967", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Hydrochlorothiazide 12.5 MG / Olmesartan medoxomil 20 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5c6", - "code": "999986", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Hydrochlorothiazide 12.5 MG / Olmesartan medoxomil 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5c7", - "code": "999991", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 10 MG / Hydrochlorothiazide 25 MG / Olmesartan medoxomil 40 MG Oral Tablet" - }, - { - "_id": "609d8393b789027a3282e5c8", - "code": "999996", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amlodipine 5 MG / Hydrochlorothiazide 12.5 MG / Olmesartan medoxomil 40 MG Oral Tablet" - } - ], - "display_name": "ACE Inhibitor or ARB", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.526.3.1139", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e429", - "concepts": [ - { - "_id": "609d8393b789027a3282e5c9", - "code": "444971000124105", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Annual wellness visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e5ca", - "code": "456201000124103", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Medicare Annual Wellness Visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e5cb", - "code": "G0438", - "code_system_name": "HCPCS", - "code_system_oid": "2.16.840.1.113883.6.285", - "code_system_version": "2019", - "display_name": "Annual wellness visit; includes a personalized prevention plan of service (pps), initial visit" - }, - { - "_id": "609d8393b789027a3282e5cc", - "code": "G0439", - "code_system_name": "HCPCS", - "code_system_oid": "2.16.840.1.113883.6.285", - "code_system_version": "2019", - "display_name": "Annual wellness visit, includes a personalized prevention plan of service (pps), subsequent visit" - } - ], - "display_name": "Annual Wellness Visit", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.526.3.1240", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e42a", - "concepts": [ - { - "_id": "609d8393b789027a3282e5cd", - "code": "102781000119107", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Sensory neuropathy due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e5ce", - "code": "104941000119109", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Retinal ischemia co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e5cf", - "code": "109171000119104", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Retinal edema co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d0", - "code": "138881000119106", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild nonproliferative retinopathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d1", - "code": "138891000119109", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate nonproliferative retinopathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d2", - "code": "1481000119100", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetes mellitus type 2 without retinopathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d3", - "code": "190330002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type 1 diabetes mellitus with hyperosmolar coma (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d4", - "code": "190331003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type 2 diabetes mellitus with hyperosmolar coma (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d5", - "code": "190368000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type I diabetes mellitus with ulcer (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d6", - "code": "190369008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-03", - "display_name": "Type I diabetes mellitus with gangrene (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d7", - "code": "190372001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type I diabetes mellitus maturity onset (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d8", - "code": "190388001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type II diabetes mellitus with multiple complications (disorder)" - }, - { - "_id": "609d8393b789027a3282e5d9", - "code": "190389009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type II diabetes mellitus with ulcer (disorder)" - }, - { - "_id": "609d8393b789027a3282e5da", - "code": "190390000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-03", - "display_name": "Type II diabetes mellitus with gangrene (disorder)" - }, - { - "_id": "609d8393b789027a3282e5db", - "code": "199229001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Pre-existing type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e5dc", - "code": "199230006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Pre-existing type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e5dd", - "code": "23045005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insulin dependent diabetes mellitus type IA (disorder)" - }, - { - "_id": "609d8393b789027a3282e5de", - "code": "237599002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insulin treated type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e5df", - "code": "237604008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Maturity onset diabetes of the young, type 2 (disorder)" - }, - { - "_id": "609d8393b789027a3282e5e0", - "code": "237618001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insulin-dependent diabetes mellitus secretory diarrhea syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e5e1", - "code": "250.00", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes mellitus without mention of complication, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5e2", - "code": "250.01", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes mellitus without mention of complication, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5e3", - "code": "250.02", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5e4", - "code": "250.03", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5e5", - "code": "250.10", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5e6", - "code": "250.11", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5e7", - "code": "250.12", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with ketoacidosis, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5e8", - "code": "250.13", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with ketoacidosis, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5e9", - "code": "250.20", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5ea", - "code": "250.21", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5eb", - "code": "250.22", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5ec", - "code": "250.23", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5ed", - "code": "250.30", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with other coma, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5ee", - "code": "250.31", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with other coma, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5ef", - "code": "250.32", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with other coma, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f0", - "code": "250.33", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with other coma, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f1", - "code": "250.40", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f2", - "code": "250.41", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f3", - "code": "250.42", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with renal manifestations, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f4", - "code": "250.43", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with renal manifestations, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f5", - "code": "250.50", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f6", - "code": "250.51", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f7", - "code": "250.52", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f8", - "code": "250.53", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5f9", - "code": "250.60", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5fa", - "code": "250.61", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5fb", - "code": "250.62", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with neurological manifestations, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5fc", - "code": "250.63", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with neurological manifestations, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5fd", - "code": "250.70", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with peripheral circulatory disorders, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5fe", - "code": "250.71", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e5ff", - "code": "250.72", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e600", - "code": "250.73", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e601", - "code": "250.80", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with other specified manifestations, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e602", - "code": "250.81", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e603", - "code": "250.82", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with other specified manifestations, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e604", - "code": "250.83", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with other specified manifestations, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e605", - "code": "250.90", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e606", - "code": "250.91", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e607", - "code": "250.92", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with unspecified complication, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e608", - "code": "250.93", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with unspecified complication, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e609", - "code": "28032008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insulin dependent diabetes mellitus type IB (disorder)" - }, - { - "_id": "609d8393b789027a3282e60a", - "code": "31211000119101", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peripheral angiopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e60b", - "code": "31321000119102", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetes mellitus type 1 without retinopathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e60c", - "code": "313435000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type I diabetes mellitus without complication (disorder)" - }, - { - "_id": "609d8393b789027a3282e60d", - "code": "313436004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type II diabetes mellitus without complication (disorder)" - }, - { - "_id": "609d8393b789027a3282e60e", - "code": "314771006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type I diabetes mellitus with hypoglycemic coma (disorder)" - }, - { - "_id": "609d8393b789027a3282e60f", - "code": "314772004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2016-09", - "display_name": "Type II diabetes mellitus with hypoglycemic coma (disorder)" - }, - { - "_id": "609d8393b789027a3282e610", - "code": "314893005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type I diabetes mellitus with arthropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e611", - "code": "314894004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2014-09", - "display_name": "Type I diabetes mellitus with neuropathic arthropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e612", - "code": "314902007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type 2 diabetes mellitus with peripheral angiopathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e613", - "code": "314903002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type II diabetes mellitus with arthropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e614", - "code": "314904008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type II diabetes mellitus with neuropathic arthropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e615", - "code": "357.2", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Polyneuropathy in diabetes" - }, - { - "_id": "609d8393b789027a3282e616", - "code": "359642000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetes mellitus type 2 in nonobese (disorder)" - }, - { - "_id": "609d8393b789027a3282e617", - "code": "362.01", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Background diabetic retinopathy" - }, - { - "_id": "609d8393b789027a3282e618", - "code": "362.02", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Proliferative diabetic retinopathy" - }, - { - "_id": "609d8393b789027a3282e619", - "code": "362.03", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nonproliferative diabetic retinopathy NOS" - }, - { - "_id": "609d8393b789027a3282e61a", - "code": "362.04", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Mild nonproliferative diabetic retinopathy" - }, - { - "_id": "609d8393b789027a3282e61b", - "code": "362.05", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Moderate nonproliferative diabetic retinopathy" - }, - { - "_id": "609d8393b789027a3282e61c", - "code": "362.06", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Severe nonproliferative diabetic retinopathy" - }, - { - "_id": "609d8393b789027a3282e61d", - "code": "362.07", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetic macular edema" - }, - { - "_id": "609d8393b789027a3282e61e", - "code": "366.41", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetic cataract" - }, - { - "_id": "609d8393b789027a3282e61f", - "code": "368521000119107", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Disorder of nerve co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e620", - "code": "395204000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hyperosmolar non-ketotic state in type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e621", - "code": "420486006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Exudative maculopathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e622", - "code": "420789003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Retinopathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e623", - "code": "420918009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mononeuropathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e624", - "code": "421164006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2016-09", - "display_name": "Hypoglycemic coma in type II diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e625", - "code": "421468001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Neurological disorder co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e626", - "code": "421750000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Ketoacidosis in type II diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e627", - "code": "421847006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Ketoacidotic coma in type II diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e628", - "code": "421920002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Cataract co-occurrent and due to diabetes mellitus type 1 (disorder)" - }, - { - "_id": "609d8393b789027a3282e629", - "code": "422014003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Disorder due to type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e62a", - "code": "427571000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Lumbosacral radiculoplexus neuropathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e62b", - "code": "44054006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetes mellitus type 2 (disorder)" - }, - { - "_id": "609d8393b789027a3282e62c", - "code": "46635009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetes mellitus type 1 (disorder)" - }, - { - "_id": "609d8393b789027a3282e62d", - "code": "4783006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Maternal diabetes mellitus with hypoglycemia affecting fetus OR newborn (disorder)" - }, - { - "_id": "609d8393b789027a3282e62e", - "code": "609562003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Maturity onset diabetes of the young, type 1 (disorder)" - }, - { - "_id": "609d8393b789027a3282e62f", - "code": "609564002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Pre-existing type 1 diabetes mellitus in pregnancy (disorder)" - }, - { - "_id": "609d8393b789027a3282e630", - "code": "609567009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Pre-existing type 2 diabetes mellitus in pregnancy (disorder)" - }, - { - "_id": "609d8393b789027a3282e631", - "code": "60961000119107", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nonproliferative retinopathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e632", - "code": "60971000119101", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Proliferative retinopathy due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e633", - "code": "60991000119100", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Blindness co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e634", - "code": "648.00", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable" - }, - { - "_id": "609d8393b789027a3282e635", - "code": "648.01", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition" - }, - { - "_id": "609d8393b789027a3282e636", - "code": "648.02", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication" - }, - { - "_id": "609d8393b789027a3282e637", - "code": "648.03", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication" - }, - { - "_id": "609d8393b789027a3282e638", - "code": "648.04", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication" - }, - { - "_id": "609d8393b789027a3282e639", - "code": "691000119103", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Erectile dysfunction co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e63a", - "code": "703138006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type II diabetes mellitus in remission (disorder)" - }, - { - "_id": "609d8393b789027a3282e63b", - "code": "712882000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Autonomic neuropathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e63c", - "code": "713702000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Gastroparesis co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e63d", - "code": "713705003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Polyneuropathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e63e", - "code": "71791000119104", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peripheral neuropathy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e63f", - "code": "719216001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypoglycemic coma co-occurrent and due to diabetes mellitus type II (disorder)" - }, - { - "_id": "609d8393b789027a3282e640", - "code": "739681000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Disorder of eye co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e641", - "code": "75682002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetes mellitus caused by insulin receptor antibodies (disorder)" - }, - { - "_id": "609d8393b789027a3282e642", - "code": "76751001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetes mellitus in mother complicating pregnancy, childbirth AND/OR puerperium (disorder)" - }, - { - "_id": "609d8393b789027a3282e643", - "code": "769219006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Macular edema co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e644", - "code": "770098001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Cranial nerve palsy co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e645", - "code": "781000119106", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetic neuropathic arthropathy associated with type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e646", - "code": "81531005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetes mellitus type 2 in obese (disorder)" - }, - { - "_id": "609d8393b789027a3282e647", - "code": "82571000119107", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Traction retinal detachment co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e648", - "code": "82581000119105", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rubeosis iridis co-occurrent and due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e649", - "code": "9859006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type 2 diabetes mellitus with acanthosis nigricans (disorder)" - }, - { - "_id": "609d8393b789027a3282e64a", - "code": "E10.10", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with ketoacidosis without coma" - }, - { - "_id": "609d8393b789027a3282e64b", - "code": "E10.11", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with ketoacidosis with coma" - }, - { - "_id": "609d8393b789027a3282e64c", - "code": "E10.21", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic nephropathy" - }, - { - "_id": "609d8393b789027a3282e64d", - "code": "E10.22", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e64e", - "code": "E10.29", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other diabetic kidney complication" - }, - { - "_id": "609d8393b789027a3282e64f", - "code": "E10.311", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e650", - "code": "E10.319", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e651", - "code": "E10.321", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e652", - "code": "E10.3211", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e653", - "code": "E10.3212", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e654", - "code": "E10.3213", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e655", - "code": "E10.3219", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e656", - "code": "E10.329", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e657", - "code": "E10.3291", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e658", - "code": "E10.3292", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e659", - "code": "E10.3293", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e65a", - "code": "E10.3299", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e65b", - "code": "E10.331", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e65c", - "code": "E10.3311", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e65d", - "code": "E10.3312", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e65e", - "code": "E10.3313", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e65f", - "code": "E10.3319", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e660", - "code": "E10.339", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e661", - "code": "E10.3391", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e662", - "code": "E10.3392", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e663", - "code": "E10.3393", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e664", - "code": "E10.3399", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e665", - "code": "E10.341", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e666", - "code": "E10.3411", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e667", - "code": "E10.3412", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e668", - "code": "E10.3413", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e669", - "code": "E10.3419", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e66a", - "code": "E10.349", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e66b", - "code": "E10.3491", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e66c", - "code": "E10.3492", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e66d", - "code": "E10.3493", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e66e", - "code": "E10.3499", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e66f", - "code": "E10.351", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e670", - "code": "E10.3511", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e671", - "code": "E10.3512", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e672", - "code": "E10.3513", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e673", - "code": "E10.3519", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e674", - "code": "E10.3521", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye" - }, - { - "_id": "609d8393b789027a3282e675", - "code": "E10.3522", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye" - }, - { - "_id": "609d8393b789027a3282e676", - "code": "E10.3523", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral" - }, - { - "_id": "609d8393b789027a3282e677", - "code": "E10.3529", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e678", - "code": "E10.3531", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye" - }, - { - "_id": "609d8393b789027a3282e679", - "code": "E10.3532", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye" - }, - { - "_id": "609d8393b789027a3282e67a", - "code": "E10.3533", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral" - }, - { - "_id": "609d8393b789027a3282e67b", - "code": "E10.3539", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e67c", - "code": "E10.3541", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye" - }, - { - "_id": "609d8393b789027a3282e67d", - "code": "E10.3542", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye" - }, - { - "_id": "609d8393b789027a3282e67e", - "code": "E10.3543", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral" - }, - { - "_id": "609d8393b789027a3282e67f", - "code": "E10.3549", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e680", - "code": "E10.3551", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, right eye" - }, - { - "_id": "609d8393b789027a3282e681", - "code": "E10.3552", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, left eye" - }, - { - "_id": "609d8393b789027a3282e682", - "code": "E10.3553", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral" - }, - { - "_id": "609d8393b789027a3282e683", - "code": "E10.3559", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e684", - "code": "E10.359", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e685", - "code": "E10.3591", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e686", - "code": "E10.3592", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e687", - "code": "E10.3593", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e688", - "code": "E10.3599", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e689", - "code": "E10.36", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic cataract" - }, - { - "_id": "609d8393b789027a3282e68a", - "code": "E10.37X1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye" - }, - { - "_id": "609d8393b789027a3282e68b", - "code": "E10.37X2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye" - }, - { - "_id": "609d8393b789027a3282e68c", - "code": "E10.37X3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral" - }, - { - "_id": "609d8393b789027a3282e68d", - "code": "E10.37X9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e68e", - "code": "E10.39", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other diabetic ophthalmic complication" - }, - { - "_id": "609d8393b789027a3282e68f", - "code": "E10.40", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic neuropathy, unspecified" - }, - { - "_id": "609d8393b789027a3282e690", - "code": "E10.41", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic mononeuropathy" - }, - { - "_id": "609d8393b789027a3282e691", - "code": "E10.42", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic polyneuropathy" - }, - { - "_id": "609d8393b789027a3282e692", - "code": "E10.43", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic autonomic (poly)neuropathy" - }, - { - "_id": "609d8393b789027a3282e693", - "code": "E10.44", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic amyotrophy" - }, - { - "_id": "609d8393b789027a3282e694", - "code": "E10.49", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other diabetic neurological complication" - }, - { - "_id": "609d8393b789027a3282e695", - "code": "E10.51", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic peripheral angiopathy without gangrene" - }, - { - "_id": "609d8393b789027a3282e696", - "code": "E10.52", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic peripheral angiopathy with gangrene" - }, - { - "_id": "609d8393b789027a3282e697", - "code": "E10.59", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other circulatory complications" - }, - { - "_id": "609d8393b789027a3282e698", - "code": "E10.610", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic neuropathic arthropathy" - }, - { - "_id": "609d8393b789027a3282e699", - "code": "E10.618", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other diabetic arthropathy" - }, - { - "_id": "609d8393b789027a3282e69a", - "code": "E10.620", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic dermatitis" - }, - { - "_id": "609d8393b789027a3282e69b", - "code": "E10.621", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with foot ulcer" - }, - { - "_id": "609d8393b789027a3282e69c", - "code": "E10.622", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other skin ulcer" - }, - { - "_id": "609d8393b789027a3282e69d", - "code": "E10.628", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other skin complications" - }, - { - "_id": "609d8393b789027a3282e69e", - "code": "E10.630", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with periodontal disease" - }, - { - "_id": "609d8393b789027a3282e69f", - "code": "E10.638", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other oral complications" - }, - { - "_id": "609d8393b789027a3282e6a0", - "code": "E10.641", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with hypoglycemia with coma" - }, - { - "_id": "609d8393b789027a3282e6a1", - "code": "E10.649", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with hypoglycemia without coma" - }, - { - "_id": "609d8393b789027a3282e6a2", - "code": "E10.65", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with hyperglycemia" - }, - { - "_id": "609d8393b789027a3282e6a3", - "code": "E10.69", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other specified complication" - }, - { - "_id": "609d8393b789027a3282e6a4", - "code": "E10.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with unspecified complications" - }, - { - "_id": "609d8393b789027a3282e6a5", - "code": "E10.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus without complications" - }, - { - "_id": "609d8393b789027a3282e6a6", - "code": "E11.00", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)" - }, - { - "_id": "609d8393b789027a3282e6a7", - "code": "E11.01", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with hyperosmolarity with coma" - }, - { - "_id": "609d8393b789027a3282e6a8", - "code": "E11.10", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with ketoacidosis without coma" - }, - { - "_id": "609d8393b789027a3282e6a9", - "code": "E11.11", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with ketoacidosis with coma" - }, - { - "_id": "609d8393b789027a3282e6aa", - "code": "E11.21", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic nephropathy" - }, - { - "_id": "609d8393b789027a3282e6ab", - "code": "E11.22", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e6ac", - "code": "E11.29", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other diabetic kidney complication" - }, - { - "_id": "609d8393b789027a3282e6ad", - "code": "E11.311", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e6ae", - "code": "E11.319", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e6af", - "code": "E11.321", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e6b0", - "code": "E11.3211", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e6b1", - "code": "E11.3212", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e6b2", - "code": "E11.3213", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e6b3", - "code": "E11.3219", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6b4", - "code": "E11.329", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e6b5", - "code": "E11.3291", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e6b6", - "code": "E11.3292", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e6b7", - "code": "E11.3293", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e6b8", - "code": "E11.3299", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6b9", - "code": "E11.331", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e6ba", - "code": "E11.3311", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e6bb", - "code": "E11.3312", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e6bc", - "code": "E11.3313", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e6bd", - "code": "E11.3319", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6be", - "code": "E11.339", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e6bf", - "code": "E11.3391", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e6c0", - "code": "E11.3392", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e6c1", - "code": "E11.3393", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e6c2", - "code": "E11.3399", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6c3", - "code": "E11.341", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e6c4", - "code": "E11.3411", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e6c5", - "code": "E11.3412", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e6c6", - "code": "E11.3413", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e6c7", - "code": "E11.3419", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6c8", - "code": "E11.349", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e6c9", - "code": "E11.3491", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e6ca", - "code": "E11.3492", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e6cb", - "code": "E11.3493", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e6cc", - "code": "E11.3499", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6cd", - "code": "E11.351", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e6ce", - "code": "E11.3511", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e6cf", - "code": "E11.3512", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e6d0", - "code": "E11.3513", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e6d1", - "code": "E11.3519", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6d2", - "code": "E11.3521", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye" - }, - { - "_id": "609d8393b789027a3282e6d3", - "code": "E11.3522", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye" - }, - { - "_id": "609d8393b789027a3282e6d4", - "code": "E11.3523", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral" - }, - { - "_id": "609d8393b789027a3282e6d5", - "code": "E11.3529", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6d6", - "code": "E11.3531", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye" - }, - { - "_id": "609d8393b789027a3282e6d7", - "code": "E11.3532", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye" - }, - { - "_id": "609d8393b789027a3282e6d8", - "code": "E11.3533", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral" - }, - { - "_id": "609d8393b789027a3282e6d9", - "code": "E11.3539", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6da", - "code": "E11.3541", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye" - }, - { - "_id": "609d8393b789027a3282e6db", - "code": "E11.3542", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye" - }, - { - "_id": "609d8393b789027a3282e6dc", - "code": "E11.3543", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral" - }, - { - "_id": "609d8393b789027a3282e6dd", - "code": "E11.3549", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6de", - "code": "E11.3551", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, right eye" - }, - { - "_id": "609d8393b789027a3282e6df", - "code": "E11.3552", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, left eye" - }, - { - "_id": "609d8393b789027a3282e6e0", - "code": "E11.3553", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral" - }, - { - "_id": "609d8393b789027a3282e6e1", - "code": "E11.3559", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6e2", - "code": "E11.359", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e6e3", - "code": "E11.3591", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e6e4", - "code": "E11.3592", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e6e5", - "code": "E11.3593", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e6e6", - "code": "E11.3599", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6e7", - "code": "E11.36", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic cataract" - }, - { - "_id": "609d8393b789027a3282e6e8", - "code": "E11.37X1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye" - }, - { - "_id": "609d8393b789027a3282e6e9", - "code": "E11.37X2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye" - }, - { - "_id": "609d8393b789027a3282e6ea", - "code": "E11.37X3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral" - }, - { - "_id": "609d8393b789027a3282e6eb", - "code": "E11.37X9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e6ec", - "code": "E11.39", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other diabetic ophthalmic complication" - }, - { - "_id": "609d8393b789027a3282e6ed", - "code": "E11.40", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic neuropathy, unspecified" - }, - { - "_id": "609d8393b789027a3282e6ee", - "code": "E11.41", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic mononeuropathy" - }, - { - "_id": "609d8393b789027a3282e6ef", - "code": "E11.42", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic polyneuropathy" - }, - { - "_id": "609d8393b789027a3282e6f0", - "code": "E11.43", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic autonomic (poly)neuropathy" - }, - { - "_id": "609d8393b789027a3282e6f1", - "code": "E11.44", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic amyotrophy" - }, - { - "_id": "609d8393b789027a3282e6f2", - "code": "E11.49", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other diabetic neurological complication" - }, - { - "_id": "609d8393b789027a3282e6f3", - "code": "E11.51", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic peripheral angiopathy without gangrene" - }, - { - "_id": "609d8393b789027a3282e6f4", - "code": "E11.52", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic peripheral angiopathy with gangrene" - }, - { - "_id": "609d8393b789027a3282e6f5", - "code": "E11.59", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other circulatory complications" - }, - { - "_id": "609d8393b789027a3282e6f6", - "code": "E11.610", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic neuropathic arthropathy" - }, - { - "_id": "609d8393b789027a3282e6f7", - "code": "E11.618", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other diabetic arthropathy" - }, - { - "_id": "609d8393b789027a3282e6f8", - "code": "E11.620", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic dermatitis" - }, - { - "_id": "609d8393b789027a3282e6f9", - "code": "E11.621", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with foot ulcer" - }, - { - "_id": "609d8393b789027a3282e6fa", - "code": "E11.622", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other skin ulcer" - }, - { - "_id": "609d8393b789027a3282e6fb", - "code": "E11.628", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other skin complications" - }, - { - "_id": "609d8393b789027a3282e6fc", - "code": "E11.630", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with periodontal disease" - }, - { - "_id": "609d8393b789027a3282e6fd", - "code": "E11.638", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other oral complications" - }, - { - "_id": "609d8393b789027a3282e6fe", - "code": "E11.641", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with hypoglycemia with coma" - }, - { - "_id": "609d8393b789027a3282e6ff", - "code": "E11.649", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with hypoglycemia without coma" - }, - { - "_id": "609d8393b789027a3282e700", - "code": "E11.65", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with hyperglycemia" - }, - { - "_id": "609d8393b789027a3282e701", - "code": "E11.69", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other specified complication" - }, - { - "_id": "609d8393b789027a3282e702", - "code": "E11.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with unspecified complications" - }, - { - "_id": "609d8393b789027a3282e703", - "code": "E11.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus without complications" - }, - { - "_id": "609d8393b789027a3282e704", - "code": "E13.00", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)" - }, - { - "_id": "609d8393b789027a3282e705", - "code": "E13.01", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with hyperosmolarity with coma" - }, - { - "_id": "609d8393b789027a3282e706", - "code": "E13.10", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with ketoacidosis without coma" - }, - { - "_id": "609d8393b789027a3282e707", - "code": "E13.11", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with ketoacidosis with coma" - }, - { - "_id": "609d8393b789027a3282e708", - "code": "E13.21", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic nephropathy" - }, - { - "_id": "609d8393b789027a3282e709", - "code": "E13.22", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e70a", - "code": "E13.29", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other diabetic kidney complication" - }, - { - "_id": "609d8393b789027a3282e70b", - "code": "E13.311", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with unspecified diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e70c", - "code": "E13.319", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with unspecified diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e70d", - "code": "E13.321", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e70e", - "code": "E13.3211", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e70f", - "code": "E13.3212", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e710", - "code": "E13.3213", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e711", - "code": "E13.3219", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e712", - "code": "E13.329", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e713", - "code": "E13.3291", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e714", - "code": "E13.3292", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e715", - "code": "E13.3293", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e716", - "code": "E13.3299", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e717", - "code": "E13.331", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e718", - "code": "E13.3311", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e719", - "code": "E13.3312", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e71a", - "code": "E13.3313", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e71b", - "code": "E13.3319", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e71c", - "code": "E13.339", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e71d", - "code": "E13.3391", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e71e", - "code": "E13.3392", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e71f", - "code": "E13.3393", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e720", - "code": "E13.3399", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e721", - "code": "E13.341", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e722", - "code": "E13.3411", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e723", - "code": "E13.3412", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e724", - "code": "E13.3413", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e725", - "code": "E13.3419", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e726", - "code": "E13.349", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e727", - "code": "E13.3491", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e728", - "code": "E13.3492", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e729", - "code": "E13.3493", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e72a", - "code": "E13.3499", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e72b", - "code": "E13.351", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema" - }, - { - "_id": "609d8393b789027a3282e72c", - "code": "E13.3511", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e72d", - "code": "E13.3512", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e72e", - "code": "E13.3513", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e72f", - "code": "E13.3519", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e730", - "code": "E13.3521", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye" - }, - { - "_id": "609d8393b789027a3282e731", - "code": "E13.3522", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye" - }, - { - "_id": "609d8393b789027a3282e732", - "code": "E13.3523", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral" - }, - { - "_id": "609d8393b789027a3282e733", - "code": "E13.3529", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e734", - "code": "E13.3531", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye" - }, - { - "_id": "609d8393b789027a3282e735", - "code": "E13.3532", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye" - }, - { - "_id": "609d8393b789027a3282e736", - "code": "E13.3533", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral" - }, - { - "_id": "609d8393b789027a3282e737", - "code": "E13.3539", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e738", - "code": "E13.3541", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye" - }, - { - "_id": "609d8393b789027a3282e739", - "code": "E13.3542", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye" - }, - { - "_id": "609d8393b789027a3282e73a", - "code": "E13.3543", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral" - }, - { - "_id": "609d8393b789027a3282e73b", - "code": "E13.3549", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e73c", - "code": "E13.3551", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy, right eye" - }, - { - "_id": "609d8393b789027a3282e73d", - "code": "E13.3552", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy, left eye" - }, - { - "_id": "609d8393b789027a3282e73e", - "code": "E13.3553", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy, bilateral" - }, - { - "_id": "609d8393b789027a3282e73f", - "code": "E13.3559", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e740", - "code": "E13.359", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema" - }, - { - "_id": "609d8393b789027a3282e741", - "code": "E13.3591", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye" - }, - { - "_id": "609d8393b789027a3282e742", - "code": "E13.3592", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye" - }, - { - "_id": "609d8393b789027a3282e743", - "code": "E13.3593", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral" - }, - { - "_id": "609d8393b789027a3282e744", - "code": "E13.3599", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e745", - "code": "E13.36", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic cataract" - }, - { - "_id": "609d8393b789027a3282e746", - "code": "E13.37X1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, right eye" - }, - { - "_id": "609d8393b789027a3282e747", - "code": "E13.37X2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, left eye" - }, - { - "_id": "609d8393b789027a3282e748", - "code": "E13.37X3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral" - }, - { - "_id": "609d8393b789027a3282e749", - "code": "E13.37X9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye" - }, - { - "_id": "609d8393b789027a3282e74a", - "code": "E13.39", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other diabetic ophthalmic complication" - }, - { - "_id": "609d8393b789027a3282e74b", - "code": "E13.40", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic neuropathy, unspecified" - }, - { - "_id": "609d8393b789027a3282e74c", - "code": "E13.41", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic mononeuropathy" - }, - { - "_id": "609d8393b789027a3282e74d", - "code": "E13.42", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic polyneuropathy" - }, - { - "_id": "609d8393b789027a3282e74e", - "code": "E13.43", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic autonomic (poly)neuropathy" - }, - { - "_id": "609d8393b789027a3282e74f", - "code": "E13.44", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic amyotrophy" - }, - { - "_id": "609d8393b789027a3282e750", - "code": "E13.49", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other diabetic neurological complication" - }, - { - "_id": "609d8393b789027a3282e751", - "code": "E13.51", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic peripheral angiopathy without gangrene" - }, - { - "_id": "609d8393b789027a3282e752", - "code": "E13.52", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic peripheral angiopathy with gangrene" - }, - { - "_id": "609d8393b789027a3282e753", - "code": "E13.59", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other circulatory complications" - }, - { - "_id": "609d8393b789027a3282e754", - "code": "E13.610", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic neuropathic arthropathy" - }, - { - "_id": "609d8393b789027a3282e755", - "code": "E13.618", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other diabetic arthropathy" - }, - { - "_id": "609d8393b789027a3282e756", - "code": "E13.620", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic dermatitis" - }, - { - "_id": "609d8393b789027a3282e757", - "code": "E13.621", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with foot ulcer" - }, - { - "_id": "609d8393b789027a3282e758", - "code": "E13.622", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other skin ulcer" - }, - { - "_id": "609d8393b789027a3282e759", - "code": "E13.628", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other skin complications" - }, - { - "_id": "609d8393b789027a3282e75a", - "code": "E13.630", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with periodontal disease" - }, - { - "_id": "609d8393b789027a3282e75b", - "code": "E13.638", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other oral complications" - }, - { - "_id": "609d8393b789027a3282e75c", - "code": "E13.641", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with hypoglycemia with coma" - }, - { - "_id": "609d8393b789027a3282e75d", - "code": "E13.649", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with hypoglycemia without coma" - }, - { - "_id": "609d8393b789027a3282e75e", - "code": "E13.65", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with hyperglycemia" - }, - { - "_id": "609d8393b789027a3282e75f", - "code": "E13.69", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other specified complication" - }, - { - "_id": "609d8393b789027a3282e760", - "code": "E13.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with unspecified complications" - }, - { - "_id": "609d8393b789027a3282e761", - "code": "E13.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus without complications" - }, - { - "_id": "609d8393b789027a3282e762", - "code": "O24.011", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 1 diabetes mellitus, in pregnancy, first trimester" - }, - { - "_id": "609d8393b789027a3282e763", - "code": "O24.012", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 1 diabetes mellitus, in pregnancy, second trimester" - }, - { - "_id": "609d8393b789027a3282e764", - "code": "O24.013", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 1 diabetes mellitus, in pregnancy, third trimester" - }, - { - "_id": "609d8393b789027a3282e765", - "code": "O24.019", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 1 diabetes mellitus, in pregnancy, unspecified trimester" - }, - { - "_id": "609d8393b789027a3282e766", - "code": "O24.02", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 1 diabetes mellitus, in childbirth" - }, - { - "_id": "609d8393b789027a3282e767", - "code": "O24.03", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 1 diabetes mellitus, in the puerperium" - }, - { - "_id": "609d8393b789027a3282e768", - "code": "O24.111", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 2 diabetes mellitus, in pregnancy, first trimester" - }, - { - "_id": "609d8393b789027a3282e769", - "code": "O24.112", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 2 diabetes mellitus, in pregnancy, second trimester" - }, - { - "_id": "609d8393b789027a3282e76a", - "code": "O24.113", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 2 diabetes mellitus, in pregnancy, third trimester" - }, - { - "_id": "609d8393b789027a3282e76b", - "code": "O24.119", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 2 diabetes mellitus, in pregnancy, unspecified trimester" - }, - { - "_id": "609d8393b789027a3282e76c", - "code": "O24.12", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 2 diabetes mellitus, in childbirth" - }, - { - "_id": "609d8393b789027a3282e76d", - "code": "O24.13", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Pre-existing type 2 diabetes mellitus, in the puerperium" - }, - { - "_id": "609d8393b789027a3282e76e", - "code": "O24.311", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified pre-existing diabetes mellitus in pregnancy, first trimester" - }, - { - "_id": "609d8393b789027a3282e76f", - "code": "O24.312", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified pre-existing diabetes mellitus in pregnancy, second trimester" - }, - { - "_id": "609d8393b789027a3282e770", - "code": "O24.313", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified pre-existing diabetes mellitus in pregnancy, third trimester" - }, - { - "_id": "609d8393b789027a3282e771", - "code": "O24.319", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified pre-existing diabetes mellitus in pregnancy, unspecified trimester" - }, - { - "_id": "609d8393b789027a3282e772", - "code": "O24.32", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified pre-existing diabetes mellitus in childbirth" - }, - { - "_id": "609d8393b789027a3282e773", - "code": "O24.33", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified pre-existing diabetes mellitus in the puerperium" - }, - { - "_id": "609d8393b789027a3282e774", - "code": "O24.811", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other pre-existing diabetes mellitus in pregnancy, first trimester" - }, - { - "_id": "609d8393b789027a3282e775", - "code": "O24.812", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other pre-existing diabetes mellitus in pregnancy, second trimester" - }, - { - "_id": "609d8393b789027a3282e776", - "code": "O24.813", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other pre-existing diabetes mellitus in pregnancy, third trimester" - }, - { - "_id": "609d8393b789027a3282e777", - "code": "O24.819", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other pre-existing diabetes mellitus in pregnancy, unspecified trimester" - }, - { - "_id": "609d8393b789027a3282e778", - "code": "O24.82", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other pre-existing diabetes mellitus in childbirth" - }, - { - "_id": "609d8393b789027a3282e779", - "code": "O24.83", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other pre-existing diabetes mellitus in the puerperium" - } - ], - "display_name": "Diabetes", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.103.12.1001", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e42b", - "concepts": [ - { - "_id": "609d8393b789027a3282e77a", - "code": "127013003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Disorder of kidney co-occurrent and due to diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e77b", - "code": "236499007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Microalbuminuric diabetic nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e77c", - "code": "236500003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Proteinuric diabetic nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e77d", - "code": "250.41", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled" - }, - { - "_id": "609d8393b789027a3282e77e", - "code": "250.42", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with renal manifestations, type II or unspecified type, uncontrolled" - }, - { - "_id": "609d8393b789027a3282e77f", - "code": "250.43", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Diabetes with renal manifestations, type I [juvenile type], uncontrolled" - }, - { - "_id": "609d8393b789027a3282e780", - "code": "38046004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diffuse type diabetic glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e781", - "code": "401110002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Type 1 diabetes mellitus with persistent microalbuminuria (disorder)" - }, - { - "_id": "609d8393b789027a3282e782", - "code": "420514000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Persistent proteinuria associated with type I diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e783", - "code": "420715001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Persistent microalbuminuria associated with type II diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e784", - "code": "421305000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Persistent microalbuminuria associated with type I diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e785", - "code": "421986006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Persistent proteinuria associated with type II diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e786", - "code": "445170001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Macroalbuminuric diabetic nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e787", - "code": "54181000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2017-09", - "display_name": "Diabetes-nephrosis syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e788", - "code": "E08.21", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Diabetes mellitus due to underlying condition with diabetic nephropathy" - }, - { - "_id": "609d8393b789027a3282e789", - "code": "E08.22", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Diabetes mellitus due to underlying condition with diabetic chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e78a", - "code": "E08.29", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Diabetes mellitus due to underlying condition with other diabetic kidney complication" - }, - { - "_id": "609d8393b789027a3282e78b", - "code": "E09.21", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Drug or chemical induced diabetes mellitus with diabetic nephropathy" - }, - { - "_id": "609d8393b789027a3282e78c", - "code": "E09.22", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Drug or chemical induced diabetes mellitus with diabetic chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e78d", - "code": "E09.29", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Drug or chemical induced diabetes mellitus with other diabetic kidney complication" - }, - { - "_id": "609d8393b789027a3282e78e", - "code": "E10.21", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic nephropathy" - }, - { - "_id": "609d8393b789027a3282e78f", - "code": "E10.22", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with diabetic chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e790", - "code": "E10.29", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 1 diabetes mellitus with other diabetic kidney complication" - }, - { - "_id": "609d8393b789027a3282e791", - "code": "E11.21", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic nephropathy" - }, - { - "_id": "609d8393b789027a3282e792", - "code": "E11.22", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with diabetic chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e793", - "code": "E11.29", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Type 2 diabetes mellitus with other diabetic kidney complication" - }, - { - "_id": "609d8393b789027a3282e794", - "code": "E13.21", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic nephropathy" - }, - { - "_id": "609d8393b789027a3282e795", - "code": "E13.22", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with diabetic chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e796", - "code": "E13.29", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified diabetes mellitus with other diabetic kidney complication" - } - ], - "display_name": "Diabetic Nephropathy", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1004", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e42c", - "concepts": [ - { - "_id": "609d8393b789027a3282e797", - "code": "28812006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodialysis education (procedure)" - }, - { - "_id": "609d8393b789027a3282e798", - "code": "385972005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dialysis care education (procedure)" - }, - { - "_id": "609d8393b789027a3282e799", - "code": "59596005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodialysis education at home (procedure)" - }, - { - "_id": "609d8393b789027a3282e79a", - "code": "66402002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peritoneal dialysis education (procedure)" - } - ], - "display_name": "Dialysis Education", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1016", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e42d", - "concepts": [ - { - "_id": "609d8393b789027a3282e79b", - "code": "1019320", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 12-19 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents" - }, - { - "_id": "609d8393b789027a3282e79c", - "code": "108241001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dialysis procedure (procedure)" - }, - { - "_id": "609d8393b789027a3282e79d", - "code": "10848006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Removal of peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282e79e", - "code": "11932001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Stabilizing hemodialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e79f", - "code": "14684005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peritoneal dialysis excluding cannulation (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a0", - "code": "180273006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Removal of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a1", - "code": "225230008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic peritoneal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a2", - "code": "225231007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Stab peritoneal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a3", - "code": "233575001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Intermittent hemodialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a4", - "code": "233576000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Intermittent hemodialysis with sequential ultrafiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a5", - "code": "233577009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Intermittent hemodialysis with continuous ultrafiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a6", - "code": "233578004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous hemodialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a7", - "code": "233579007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous arteriovenous hemodialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a8", - "code": "233580005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous venovenous hemodialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7a9", - "code": "233581009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemofiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7aa", - "code": "233582002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Intermittent hemofiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7ab", - "code": "233583007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous hemofiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7ac", - "code": "233584001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous arteriovenous hemofiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7ad", - "code": "233585000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous venovenous hemofiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7ae", - "code": "233586004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodiafiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7af", - "code": "233587008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Intermittent hemodiafiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b0", - "code": "233588003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous hemodiafiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b1", - "code": "233589006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous arteriovenous hemodiafiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b2", - "code": "233590002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous venovenous hemodiafiltration (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b3", - "code": "238316008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Aspiration of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b4", - "code": "238317004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Flushing of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b5", - "code": "238318009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous ambulatory peritoneal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b6", - "code": "238319001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous cycling peritoneal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b7", - "code": "238321006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Intermittent peritoneal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b8", - "code": "238322004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Tidal peritoneal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7b9", - "code": "238323009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Night-time intermittent peritoneal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7ba", - "code": "265764009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7bb", - "code": "288182009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Extracorporeal kidney (procedure)" - }, - { - "_id": "609d8393b789027a3282e7bc", - "code": "302497006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7bd", - "code": "34897002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodialysis, maintenance in hospital (procedure)" - }, - { - "_id": "609d8393b789027a3282e7be", - "code": "427053002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Extracorporeal albumin hemodialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7bf", - "code": "428648006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Automated peritoneal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7c0", - "code": "439278006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Measurement of static venous pressure in hemodialysis vascular access (procedure)" - }, - { - "_id": "609d8393b789027a3282e7c1", - "code": "439976001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Measurement of recirculation in hemodialysis vascular access (procedure)" - }, - { - "_id": "609d8393b789027a3282e7c2", - "code": "57274006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Initial hemodialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7c3", - "code": "676002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peritoneal dialysis including cannulation (procedure)" - }, - { - "_id": "609d8393b789027a3282e7c4", - "code": "67970008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodialysis, maintenance at home (procedure)" - }, - { - "_id": "609d8393b789027a3282e7c5", - "code": "68341005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodialysis, supervision at home (procedure)" - }, - { - "_id": "609d8393b789027a3282e7c6", - "code": "71192002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peritoneal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282e7c7", - "code": "714749008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Continuous renal replacement therapy (procedure)" - }, - { - "_id": "609d8393b789027a3282e7c8", - "code": "90920", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2006", - "display_name": "End-stage renal disease (ESRD) related services per full month; for patients between twelve and nineteen years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents" - }, - { - "_id": "609d8393b789027a3282e7c9", - "code": "90921", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2006", - "display_name": "End-stage renal disease (ESRD) related services per full month; for patients twenty years of age and over" - }, - { - "_id": "609d8393b789027a3282e7ca", - "code": "90924", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2006", - "display_name": "End-stage renal disease (ESRD) related services (less than full month), per day; for patients between twelve and nineteen years of age" - }, - { - "_id": "609d8393b789027a3282e7cb", - "code": "90925", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2006", - "display_name": "End-stage renal disease (ESRD) related services (less than full month), per day; for patients twenty years of age and over" - }, - { - "_id": "609d8393b789027a3282e7cc", - "code": "90935", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Hemodialysis procedure with single evaluation by a physician or other qualified health care professional" - }, - { - "_id": "609d8393b789027a3282e7cd", - "code": "90937", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Hemodialysis procedure requiring repeated evaluation(s) with or without substantial revision of dialysis prescription" - }, - { - "_id": "609d8393b789027a3282e7ce", - "code": "90940", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Hemodialysis access flow study to determine blood flow in grafts and arteriovenous fistulae by an indicator method" - }, - { - "_id": "609d8393b789027a3282e7cf", - "code": "90945", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Dialysis procedure other than hemodialysis (eg, peritoneal dialysis, hemofiltration, or other continuous renal replacement therapies), with single evaluation by a physician or other qualified health care professional" - }, - { - "_id": "609d8393b789027a3282e7d0", - "code": "90947", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Dialysis procedure other than hemodialysis (eg, peritoneal dialysis, hemofiltration, or other continuous renal replacement therapies) requiring repeated evaluations by a physician or other qualified health care professional, with or without substantial revision of dialysis prescription" - }, - { - "_id": "609d8393b789027a3282e7d1", - "code": "90957", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 12-19 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 4 or more face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7d2", - "code": "90958", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 12-19 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 2-3 face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7d3", - "code": "90959", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 12-19 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 1 face-to-face visit by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7d4", - "code": "G0257", - "code_system_name": "HCPCS", - "code_system_oid": "2.16.840.1.113883.6.285", - "code_system_version": "2019", - "display_name": "Unscheduled or emergency dialysis treatment for an esrd patient in a hospital outpatient department that is not certified as an esrd facility" - } - ], - "display_name": "Dialysis Services", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1013", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e42e", - "concepts": [ - { - "_id": "609d8393b789027a3282e7d5", - "code": "90951", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients younger than 2 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 4 or more face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7d6", - "code": "90952", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients younger than 2 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 2-3 face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7d7", - "code": "90953", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients younger than 2 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 1 face-to-face visit by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7d8", - "code": "90954", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 2-11 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 4 or more face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7d9", - "code": "90955", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 2-11 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 2-3 face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7da", - "code": "90956", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 2-11 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 1 face-to-face visit by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7db", - "code": "90957", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 12-19 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 4 or more face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7dc", - "code": "90958", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 12-19 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 2-3 face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7dd", - "code": "90959", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 12-19 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents; with 1 face-to-face visit by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7de", - "code": "90960", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 20 years of age and older; with 4 or more face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7df", - "code": "90961", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 20 years of age and older; with 2-3 face-to-face visits by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7e0", - "code": "90962", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services monthly, for patients 20 years of age and older; with 1 face-to-face visit by a physician or other qualified health care professional per month" - }, - { - "_id": "609d8393b789027a3282e7e1", - "code": "90963", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services for home dialysis per full month, for patients younger than 2 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents" - }, - { - "_id": "609d8393b789027a3282e7e2", - "code": "90964", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services for home dialysis per full month, for patients 2-11 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents" - }, - { - "_id": "609d8393b789027a3282e7e3", - "code": "90965", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services for home dialysis per full month, for patients 12-19 years of age to include monitoring for the adequacy of nutrition, assessment of growth and development, and counseling of parents" - }, - { - "_id": "609d8393b789027a3282e7e4", - "code": "90966", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services for home dialysis per full month, for patients 20 years of age and older" - }, - { - "_id": "609d8393b789027a3282e7e5", - "code": "90967", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services for dialysis less than a full month of service, per day; for patients younger than 2 years of age" - }, - { - "_id": "609d8393b789027a3282e7e6", - "code": "90968", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services for dialysis less than a full month of service, per day; for patients 2-11 years of age" - }, - { - "_id": "609d8393b789027a3282e7e7", - "code": "90969", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services for dialysis less than a full month of service, per day; for patients 12-19 years of age" - }, - { - "_id": "609d8393b789027a3282e7e8", - "code": "90970", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "End-stage renal disease (ESRD) related services for dialysis less than a full month of service, per day; for patients 20 years of age and older" - }, - { - "_id": "609d8393b789027a3282e7e9", - "code": "90989", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Dialysis training, patient, including helper where applicable, any mode, completed course" - }, - { - "_id": "609d8393b789027a3282e7ea", - "code": "90993", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Dialysis training, patient, including helper where applicable, any mode, course not completed, per training session" - }, - { - "_id": "609d8393b789027a3282e7eb", - "code": "90997", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Hemoperfusion (eg, with activated charcoal or resin)" - }, - { - "_id": "609d8393b789027a3282e7ec", - "code": "90999", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Unlisted dialysis procedure, inpatient or outpatient" - }, - { - "_id": "609d8393b789027a3282e7ed", - "code": "99512", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for hemodialysis" - } - ], - "display_name": "ESRD Monthly Outpatient Services", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1014", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e42f", - "concepts": [ - { - "_id": "609d8393b789027a3282e7ee", - "code": "12843005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Subsequent hospital visit by physician (procedure)" - }, - { - "_id": "609d8393b789027a3282e7ef", - "code": "18170008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Subsequent nursing facility visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f0", - "code": "185349003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Encounter for check up (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f1", - "code": "185463005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Visit out of hours (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f2", - "code": "185465003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Weekend visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f3", - "code": "19681004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nursing evaluation of patient and report (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f4", - "code": "207195004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "History and physical examination with evaluation and management of nursing facility patient (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f5", - "code": "270427003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Patient-initiated encounter (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f6", - "code": "270430005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Provider-initiated encounter (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f7", - "code": "308335008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Patient encounter procedure (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f8", - "code": "390906007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Follow-up encounter (procedure)" - }, - { - "_id": "609d8393b789027a3282e7f9", - "code": "406547006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Urgent follow-up (procedure)" - }, - { - "_id": "609d8393b789027a3282e7fa", - "code": "439708006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e7fb", - "code": "87790002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Follow-up inpatient consultation visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e7fc", - "code": "90526000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Initial evaluation and management of healthy individual (procedure)" - } - ], - "display_name": "Face-to-Face Interaction", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.101.12.1048", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e430", - "concepts": [ - { - "_id": "609d8393b789027a3282e7fd", - "code": "101711000119105", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerulonephritis co-occurrent and due to antineutrophil cytoplasmic antibody positive vasculitis (disorder)" - }, - { - "_id": "609d8393b789027a3282e7fe", - "code": "110996009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Armanni-Ebstein kidney (disorder)" - }, - { - "_id": "609d8393b789027a3282e7ff", - "code": "111395007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrogenic diabetes insipidus (disorder)" - }, - { - "_id": "609d8393b789027a3282e800", - "code": "118951003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Drug-induced nephrogenic diabetes insipidus (disorder)" - }, - { - "_id": "609d8393b789027a3282e801", - "code": "123609007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Subacute glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e802", - "code": "123610002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Healed glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e803", - "code": "123752003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Immune-complex glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e804", - "code": "12491000132101", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria (finding)" - }, - { - "_id": "609d8393b789027a3282e805", - "code": "12511000132108", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Persistent proteinuria (finding)" - }, - { - "_id": "609d8393b789027a3282e806", - "code": "13335004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Sclerosing glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e807", - "code": "1426004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Necrotizing glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e808", - "code": "16726004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal osteodystrophy (disorder)" - }, - { - "_id": "609d8393b789027a3282e809", - "code": "1776003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal tubular acidosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e80a", - "code": "19351000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e80b", - "code": "194909006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute pericarditis co-occurrent and due to uremia (disorder)" - }, - { - "_id": "609d8393b789027a3282e80c", - "code": "195353004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Granulomatosis with polyangiitis (disorder)" - }, - { - "_id": "609d8393b789027a3282e80d", - "code": "197577008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2014-09", - "display_name": "Nephritis, nephrosis and nephrotic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e80e", - "code": "197579006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e80f", - "code": "197580009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritis with lesions of necrotizing glomerulitis (disorder)" - }, - { - "_id": "609d8393b789027a3282e810", - "code": "197582001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute glomerulonephritis associated with another disorder (disorder)" - }, - { - "_id": "609d8393b789027a3282e811", - "code": "197584000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute focal nephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e812", - "code": "197585004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute diffuse nephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e813", - "code": "197589005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome with proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e814", - "code": "197590001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome with membranous glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e815", - "code": "197591002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome with membranoproliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e816", - "code": "197593004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome, minor glomerular abnormality (disorder)" - }, - { - "_id": "609d8393b789027a3282e817", - "code": "197594005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome, focal and segmental glomerular lesions (disorder)" - }, - { - "_id": "609d8393b789027a3282e818", - "code": "197595006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome, diffuse membranous glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e819", - "code": "197596007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome, diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e81a", - "code": "197597003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome, diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e81b", - "code": "197598008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome, diffuse mesangiocapillary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e81c", - "code": "197599000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome, dense deposit disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e81d", - "code": "197600002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome, diffuse crescentic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e81e", - "code": "197601003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Finnish congenital nephrotic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e81f", - "code": "197603000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome associated with another disorder (disorder)" - }, - { - "_id": "609d8393b789027a3282e820", - "code": "197605007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome due to diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e821", - "code": "197607004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome in polyarteritis nodosa (disorder)" - }, - { - "_id": "609d8393b789027a3282e822", - "code": "197613008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic mesangial proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e823", - "code": "197616000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic glomerulonephritis associated with another disorder (disorder)" - }, - { - "_id": "609d8393b789027a3282e824", - "code": "197617009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic exudative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e825", - "code": "197618004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic focal glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e826", - "code": "197619007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic diffuse glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e827", - "code": "197626007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Focal membranoproliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e828", - "code": "197628008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2017-09", - "display_name": "Focal glomerulonephritis with focal recurrent macroscopic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e829", - "code": "197629000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Anaphylactoid glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e82a", - "code": "197632002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Berger's immunoglobulin A or immunoglobulin G nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e82b", - "code": "197661001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e82c", - "code": "197663003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Impaired renal function disorder (disorder)" - }, - { - "_id": "609d8393b789027a3282e82d", - "code": "197664009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Phosphate-losing tubular disorders (disorder)" - }, - { - "_id": "609d8393b789027a3282e82e", - "code": "197671004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal function impairment with growth failure (disorder)" - }, - { - "_id": "609d8393b789027a3282e82f", - "code": "197679002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerular disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e830", - "code": "197681000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritic syndrome, minor glomerular abnormality (disorder)" - }, - { - "_id": "609d8393b789027a3282e831", - "code": "197682007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritic syndrome, focal and segmental glomerular lesions (disorder)" - }, - { - "_id": "609d8393b789027a3282e832", - "code": "197683002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritic syndrome, diffuse membranous glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e833", - "code": "197684008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritic syndrome, diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e834", - "code": "197685009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e835", - "code": "197686005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritic syndrome, diffuse mesangiocapillary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e836", - "code": "197687001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritic syndrome, dense deposit disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e837", - "code": "197688006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritic syndrome, diffuse crescentic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e838", - "code": "197689003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive nephritic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e839", - "code": "197690007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive nephritic syndrome, minor glomerular abnormality (disorder)" - }, - { - "_id": "609d8393b789027a3282e83a", - "code": "197691006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive nephritic syndrome, focal and segmental glomerular lesions (disorder)" - }, - { - "_id": "609d8393b789027a3282e83b", - "code": "197692004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive nephritic syndrome, diffuse membranous glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e83c", - "code": "197693009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive nephritic syndrome, diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e83d", - "code": "197694003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e83e", - "code": "197695002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive nephritic syndrome, diffuse mesangiocapillary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e83f", - "code": "197696001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive nephritic syndrome, dense deposit disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e840", - "code": "197697005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive nephritic syndrome, diffuse crescentic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e841", - "code": "197699008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2015-09", - "display_name": "Recurrent and persistent hematuria, minor glomerular abnormality (disorder)" - }, - { - "_id": "609d8393b789027a3282e842", - "code": "197700009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2015-09", - "display_name": "Recurrent and persistent hematuria, focal and segmental glomerular lesions (disorder)" - }, - { - "_id": "609d8393b789027a3282e843", - "code": "197701008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2015-09", - "display_name": "Recurrent and persistent hematuria, diffuse membranous glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e844", - "code": "197702001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2015-09", - "display_name": "Recurrent and persistent hematuria, diffuse mesangial proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e845", - "code": "197703006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2015-09", - "display_name": "Recurrent and persistent hematuria, diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e846", - "code": "197704000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2015-09", - "display_name": "Recurrent and persistent hematuria, diffuse mesangiocapillary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e847", - "code": "197705004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2015-09", - "display_name": "Recurrent and persistent hematuria, dense deposit disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e848", - "code": "197706003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2015-09", - "display_name": "Recurrent and persistent hematuria, diffuse crescentic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e849", - "code": "197707007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic nephritic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e84a", - "code": "197708002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic nephritic syndrome, minor glomerular abnormality (disorder)" - }, - { - "_id": "609d8393b789027a3282e84b", - "code": "197709005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic nephritic syndrome, focal and segmental glomerular lesions (disorder)" - }, - { - "_id": "609d8393b789027a3282e84c", - "code": "197712008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e84d", - "code": "197713003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic nephritic syndrome, diffuse mesangiocapillary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e84e", - "code": "197714009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic nephritic syndrome, dense deposit disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e84f", - "code": "197715005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic nephritic syndrome, diffuse crescentic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e850", - "code": "197716006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria with specified morphological lesion (finding)" - }, - { - "_id": "609d8393b789027a3282e851", - "code": "197717002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria with specified morphological lesion, minor glomerular abnormality (finding)" - }, - { - "_id": "609d8393b789027a3282e852", - "code": "197719004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria with specified morphological lesion, focal and segmental glomerular lesions (finding)" - }, - { - "_id": "609d8393b789027a3282e853", - "code": "197720005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria with specified morphological lesion, diffuse membranous glomerulonephritis (finding)" - }, - { - "_id": "609d8393b789027a3282e854", - "code": "197721009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria with specified morphological lesion, diffuse mesangial proliferative glomerulonephritis (finding)" - }, - { - "_id": "609d8393b789027a3282e855", - "code": "197722002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria with specified morphological lesion, diffuse endocapillary proliferative glomerulonephritis (finding)" - }, - { - "_id": "609d8393b789027a3282e856", - "code": "197723007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria with specified morphological lesion, diffuse mesangiocapillary glomerulonephritis (finding)" - }, - { - "_id": "609d8393b789027a3282e857", - "code": "197724001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria with specified morphological lesion, dense deposit disease (finding)" - }, - { - "_id": "609d8393b789027a3282e858", - "code": "197725000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Isolated proteinuria with specified morphological lesion, diffuse concentric glomerulonephritis (finding)" - }, - { - "_id": "609d8393b789027a3282e859", - "code": "197738008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerular disorders in neoplastic diseases (disorder)" - }, - { - "_id": "609d8393b789027a3282e85a", - "code": "197739000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerular disorders in blood diseases and disorders involving the immune mechanism (disorder)" - }, - { - "_id": "609d8393b789027a3282e85b", - "code": "197769007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute pyelonephritis with medullary necrosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e85c", - "code": "20917003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e85d", - "code": "22702000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerulitis (disorder)" - }, - { - "_id": "609d8393b789027a3282e85e", - "code": "232369001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Wegener's granulomatosis of nose (disorder)" - }, - { - "_id": "609d8393b789027a3282e85f", - "code": "232460001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Wegener's granulomatosis of larynx (disorder)" - }, - { - "_id": "609d8393b789027a3282e860", - "code": "234485006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Epstein syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e861", - "code": "235000001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Wegener's granulomatosis of gingivae (disorder)" - }, - { - "_id": "609d8393b789027a3282e862", - "code": "236380004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Steroid-sensitive nephrotic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e863", - "code": "236381000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Steroid-resistant nephrotic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e864", - "code": "236382007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Steroid-dependent nephrotic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e865", - "code": "236383002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Familial mesangial sclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e866", - "code": "236384008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Congenital nephrotic syndrome with focal glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e867", - "code": "236385009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Drash syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e868", - "code": "236392004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Rapidly progressive glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e869", - "code": "236393009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Endocapillary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e86a", - "code": "236394003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Idiopathic endocapillary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e86b", - "code": "236395002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Post-infectious glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e86c", - "code": "236397005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Post-infectious glomerulonephritis - Garland variety (disorder)" - }, - { - "_id": "609d8393b789027a3282e86d", - "code": "236398000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Crescentic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e86e", - "code": "236399008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Steroid-sensitive minimal change glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e86f", - "code": "236400001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Steroid-resistant minimal change glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e870", - "code": "236401002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Steroid-dependent minimal change glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e871", - "code": "236402009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerulopathy due to ischemia (disorder)" - }, - { - "_id": "609d8393b789027a3282e872", - "code": "236403004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Focal segmental glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e873", - "code": "236404005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Classical focal segmental glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e874", - "code": "236405006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hyperfiltration focal segmental glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e875", - "code": "236407003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Immunoglobulin A nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e876", - "code": "236409000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mesangiocapillary glomerulonephritis type III (disorder)" - }, - { - "_id": "609d8393b789027a3282e877", - "code": "236410005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mesangiocapillary glomerulonephritis type IV (disorder)" - }, - { - "_id": "609d8393b789027a3282e878", - "code": "236411009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Immunoglobulin M nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e879", - "code": "236412002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "C1q nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e87a", - "code": "236413007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Membranous glomerulonephritis - stage I (disorder)" - }, - { - "_id": "609d8393b789027a3282e87b", - "code": "236414001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Membranous glomerulonephritis - stage II (disorder)" - }, - { - "_id": "609d8393b789027a3282e87c", - "code": "236415000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Membranous glomerulonephritis - stage III (disorder)" - }, - { - "_id": "609d8393b789027a3282e87d", - "code": "236416004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Membranous glomerulonephritis - stage IV (disorder)" - }, - { - "_id": "609d8393b789027a3282e87e", - "code": "236417008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Membranous glomerulonephritis stage V (disorder)" - }, - { - "_id": "609d8393b789027a3282e87f", - "code": "236418003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Thin basement membrane disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e880", - "code": "236419006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Progressive hereditary glomerulonephritis without deafness (disorder)" - }, - { - "_id": "609d8393b789027a3282e881", - "code": "236420000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Alport syndrome-like hereditary nephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e882", - "code": "236422008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Fechtner syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e883", - "code": "236437007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Structural and functional abnormalities of the kidney (disorder)" - }, - { - "_id": "609d8393b789027a3282e884", - "code": "236460004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Familial proximal renal tubular acidosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e885", - "code": "236461000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Distal renal tubular acidosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e886", - "code": "236463002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hyperkalemic renal tubular acidosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e887", - "code": "236479001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Magnesium-losing nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e888", - "code": "236480003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Inherited magnesium-losing nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e889", - "code": "236508005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignancy-associated glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e88a", - "code": "236534002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Familial lobular glomerulopathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e88b", - "code": "236535001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerulopathy with giant fibrillar deposits (disorder)" - }, - { - "_id": "609d8393b789027a3282e88c", - "code": "236587002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Transplant glomerulopathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e88d", - "code": "236588007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Transplant glomerulopathy - early form (disorder)" - }, - { - "_id": "609d8393b789027a3282e88e", - "code": "236589004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Transplant glomerulopathy - late form (disorder)" - }, - { - "_id": "609d8393b789027a3282e88f", - "code": "236590008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Cytomegalovirus-induced glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e890", - "code": "239932005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Primary pauci-immune necrotizing and crescentic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e891", - "code": "239935007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Limited Wegener's granulomatosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e892", - "code": "239936008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Wegener's granulomatosis with multisystem involvement (disorder)" - }, - { - "_id": "609d8393b789027a3282e893", - "code": "24790002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Proximal renal tubular acidosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e894", - "code": "253864004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Familial hypoplastic, glomerulocystic kidney (disorder)" - }, - { - "_id": "609d8393b789027a3282e895", - "code": "25821008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Focal glomerular sclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e896", - "code": "266549004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome with minimal change glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e897", - "code": "276585000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Congenital nephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e898", - "code": "282364005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Immunoglobulin A nephropathy associated with liver disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e899", - "code": "309426007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetic glomerulopathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e89a", - "code": "35546006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mesangial proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e89b", - "code": "359694003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Idiopathic crescentic glomerulonephritis, type II (disorder)" - }, - { - "_id": "609d8393b789027a3282e89c", - "code": "36171008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e89d", - "code": "363234001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome secondary to systemic disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e89e", - "code": "3704008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diffuse endocapillary proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e89f", - "code": "370494002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Protein-losing nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a0", - "code": "37085009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Shunt nephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a1", - "code": "38046004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diffuse type diabetic glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a2", - "code": "399190000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Non-progressive hereditary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a3", - "code": "399340005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hereditary nephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a4", - "code": "40233000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic-nephritic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a5", - "code": "42231000009109", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bacterial nephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a6", - "code": "425384007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Sarcoidosis with glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a7", - "code": "425455002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diabetic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a8", - "code": "441815006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8a9", - "code": "444977005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Autosomal dominant focal segmental glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8aa", - "code": "445258009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Idiopathic rapidly progressive glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ab", - "code": "445388002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Autosomal recessive focal segmental glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ac", - "code": "445404003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Familial immunoglobulin A nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ad", - "code": "446923008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Lipoprotein glomerulopathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ae", - "code": "44785005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Minimal change disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e8af", - "code": "48796009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Congenital nephrotic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8b0", - "code": "52254009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8b1", - "code": "52845002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8b2", - "code": "54181000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2017-09", - "display_name": "Diabetes-nephrosis syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8b3", - "code": "54879000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypokalemic nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e8b4", - "code": "55652009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Idiopathic crescentic glomerulonephritis, type III (disorder)" - }, - { - "_id": "609d8393b789027a3282e8b5", - "code": "57965003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute benign hemorrhagic glomerulonephritic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8b6", - "code": "580.4", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8b7", - "code": "580.81", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Acute glomerulonephritis in diseases classified elsewhere" - }, - { - "_id": "609d8393b789027a3282e8b8", - "code": "580.89", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Acute glomerulonephritis with other specified pathological lesion in kidney" - }, - { - "_id": "609d8393b789027a3282e8b9", - "code": "580.9", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Acute glomerulonephritis with unspecified pathological lesion in kidney" - }, - { - "_id": "609d8393b789027a3282e8ba", - "code": "581.0", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephrotic syndrome with lesion of proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8bb", - "code": "581.1", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephrotic syndrome with lesion of membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8bc", - "code": "581.2", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8bd", - "code": "581.3", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephrotic syndrome with lesion of minimal change glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8be", - "code": "581.81", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephrotic syndrome in diseases classified elsewhere" - }, - { - "_id": "609d8393b789027a3282e8bf", - "code": "581.89", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephrotic syndrome with other specified pathological lesion in kidney" - }, - { - "_id": "609d8393b789027a3282e8c0", - "code": "581.9", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephrotic syndrome with unspecified pathological lesion in kidney" - }, - { - "_id": "609d8393b789027a3282e8c1", - "code": "582.0", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic glomerulonephritis with lesion of proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8c2", - "code": "582.1", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic glomerulonephritis with lesion of membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8c3", - "code": "582.2", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8c4", - "code": "582.4", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8c5", - "code": "582.81", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic glomerulonephritis in diseases classified elsewhere" - }, - { - "_id": "609d8393b789027a3282e8c6", - "code": "582.89", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic glomerulonephritis with other specified pathological lesion in kidney" - }, - { - "_id": "609d8393b789027a3282e8c7", - "code": "582.9", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic glomerulonephritis with unspecified pathological lesion in kidney" - }, - { - "_id": "609d8393b789027a3282e8c8", - "code": "583.0", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8c9", - "code": "583.1", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8ca", - "code": "583.2", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8cb", - "code": "583.4", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e8cc", - "code": "583.6", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis" - }, - { - "_id": "609d8393b789027a3282e8cd", - "code": "583.7", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis" - }, - { - "_id": "609d8393b789027a3282e8ce", - "code": "583.81", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere" - }, - { - "_id": "609d8393b789027a3282e8cf", - "code": "583.89", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney" - }, - { - "_id": "609d8393b789027a3282e8d0", - "code": "583.9", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney" - }, - { - "_id": "609d8393b789027a3282e8d1", - "code": "58574008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e8d2", - "code": "588.0", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Renal osteodystrophy" - }, - { - "_id": "609d8393b789027a3282e8d3", - "code": "588.1", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Nephrogenic diabetes insipidus" - }, - { - "_id": "609d8393b789027a3282e8d4", - "code": "588.81", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Secondary hyperparathyroidism (of renal origin)" - }, - { - "_id": "609d8393b789027a3282e8d5", - "code": "588.89", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Other specified disorders resulting from impaired renal function" - }, - { - "_id": "609d8393b789027a3282e8d6", - "code": "588.9", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Unspecified disorder resulting from impaired renal function" - }, - { - "_id": "609d8393b789027a3282e8d7", - "code": "59479006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mesangiocapillary glomerulonephritis, type II (disorder)" - }, - { - "_id": "609d8393b789027a3282e8d8", - "code": "61165007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hereditary nephrogenic diabetes insipidus (disorder)" - }, - { - "_id": "609d8393b789027a3282e8d9", - "code": "61503006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute nephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8da", - "code": "62240004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Benign arteriolar nephrosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8db", - "code": "63510008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nodular type diabetic glomerulosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8dc", - "code": "64168005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Idiopathic crescentic glomerulonephritis, type I (disorder)" - }, - { - "_id": "609d8393b789027a3282e8dd", - "code": "64212008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Diffuse crescentic glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8de", - "code": "68544003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute post-streptococcal glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8df", - "code": "68779003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Primary immunoglobulin A nephropathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e0", - "code": "717760006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Multi-drug resistant nephrotic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e1", - "code": "717766000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Alport syndrome autosomal dominant (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e2", - "code": "717767009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Alport syndrome autosomal recessive (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e3", - "code": "717768004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Alport syndrome X-linked (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e4", - "code": "719839000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Tubular renal disease with cardiomyopathy syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e5", - "code": "720982007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Alport syndrome, intellectual disability, midface hypoplasia, elliptocytosis syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e6", - "code": "721175003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Idiopathic glomerular disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e7", - "code": "721207002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Seizure, sensorineural deafness, ataxia, intellectual disability, electrolyte imbalance syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e8", - "code": "721297008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Galloway Mowat syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8e9", - "code": "721840000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hyperuricemia, anemia, renal failure syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ea", - "code": "722086002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Membranous glomerulonephritis due to malignant neoplastic disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e8eb", - "code": "722118005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Congenital nephrotic syndrome due to congenital infection (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ec", - "code": "722119002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Idiopathic membranous glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ed", - "code": "722120008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Membranous glomerulonephritis caused by drug (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ee", - "code": "722139003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Focal segmental glomerulosclerosis caused by lithium (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ef", - "code": "722147003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Focal segmental glomerulosclerosis due to sickle cell disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f0", - "code": "722168002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Membranous glomerulonephritis co-occurrent with infectious disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f1", - "code": "722294004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Autosomal dominant intermediate Charcot-Marie-Tooth disease type E (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f2", - "code": "722369003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Congenital nephrotic syndrome due to diffuse mesangial sclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f3", - "code": "722381004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Congenital cataract, nephropathy, encephalopathy syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f4", - "code": "722433005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dyschondrosteosis and nephritis syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f5", - "code": "722468005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Distal renal tubular acidosis co-occurrent with sensorineural deafness (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f6", - "code": "722758004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Complement component 3 glomerulopathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f7", - "code": "722759007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerulopathy with fibronectin deposits 2 (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f8", - "code": "722760002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dense deposit disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e8f9", - "code": "722761003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Complement component 3 glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8fa", - "code": "722948009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerular disorder due to non-neuropathic heredofamilial amyloidosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8fb", - "code": "723074006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal papillary necrosis due to diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282e8fc", - "code": "724099000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acquired monoclonal immunoglobulin light chain-associated Fanconi syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e8fd", - "code": "725592009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Congenital membranous nephropathy due to maternal anti-neutral endopeptidase alloimmunization (disorder)" - }, - { - "_id": "609d8393b789027a3282e8fe", - "code": "726082003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Immunotactoid glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e8ff", - "code": "73305009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Fibrillary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e900", - "code": "733453005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Congenital nephrotic syndrome, interstitial lung disease, epidermolysis bullosa syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e901", - "code": "75888001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mesangiocapillary glomerulonephritis, type I (disorder)" - }, - { - "_id": "609d8393b789027a3282e902", - "code": "766249007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Deafness, nephritis, anorectal malformation syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e903", - "code": "7703001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal tubular defect (disorder)" - }, - { - "_id": "609d8393b789027a3282e904", - "code": "77182004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Membranous glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e905", - "code": "7724006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephritic syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e906", - "code": "80321008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mesangiocapillary glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e907", - "code": "81363003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignant arteriolar nephrosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e908", - "code": "81475007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acquired nephrogenic diabetes insipidus (disorder)" - }, - { - "_id": "609d8393b789027a3282e909", - "code": "8199003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Focal embolic nephritis syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282e90a", - "code": "83866005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Focal AND segmental proliferative glomerulonephritis (disorder)" - }, - { - "_id": "609d8393b789027a3282e90b", - "code": "90493000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Arteriolar nephrosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e90c", - "code": "90971000119103", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Glomerulonephritis co-occurrent and due to vasculitis (disorder)" - }, - { - "_id": "609d8393b789027a3282e90d", - "code": "N00.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with minor glomerular abnormality" - }, - { - "_id": "609d8393b789027a3282e90e", - "code": "N00.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with focal and segmental glomerular lesions" - }, - { - "_id": "609d8393b789027a3282e90f", - "code": "N00.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with diffuse membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e910", - "code": "N00.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with diffuse mesangial proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e911", - "code": "N00.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e912", - "code": "N00.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with diffuse mesangiocapillary glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e913", - "code": "N00.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with dense deposit disease" - }, - { - "_id": "609d8393b789027a3282e914", - "code": "N00.7", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with diffuse crescentic glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e915", - "code": "N00.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with other morphologic changes" - }, - { - "_id": "609d8393b789027a3282e916", - "code": "N00.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute nephritic syndrome with unspecified morphologic changes" - }, - { - "_id": "609d8393b789027a3282e917", - "code": "N01.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with minor glomerular abnormality" - }, - { - "_id": "609d8393b789027a3282e918", - "code": "N01.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with focal and segmental glomerular lesions" - }, - { - "_id": "609d8393b789027a3282e919", - "code": "N01.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with diffuse membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e91a", - "code": "N01.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with diffuse mesangial proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e91b", - "code": "N01.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e91c", - "code": "N01.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with diffuse mesangiocapillary glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e91d", - "code": "N01.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with dense deposit disease" - }, - { - "_id": "609d8393b789027a3282e91e", - "code": "N01.7", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with diffuse crescentic glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e91f", - "code": "N01.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with other morphologic changes" - }, - { - "_id": "609d8393b789027a3282e920", - "code": "N01.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Rapidly progressive nephritic syndrome with unspecified morphologic changes" - }, - { - "_id": "609d8393b789027a3282e921", - "code": "N02.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with minor glomerular abnormality" - }, - { - "_id": "609d8393b789027a3282e922", - "code": "N02.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with focal and segmental glomerular lesions" - }, - { - "_id": "609d8393b789027a3282e923", - "code": "N02.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with diffuse membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e924", - "code": "N02.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with diffuse mesangial proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e925", - "code": "N02.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e926", - "code": "N02.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with diffuse mesangiocapillary glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e927", - "code": "N02.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with dense deposit disease" - }, - { - "_id": "609d8393b789027a3282e928", - "code": "N02.7", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with diffuse crescentic glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e929", - "code": "N02.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with other morphologic changes" - }, - { - "_id": "609d8393b789027a3282e92a", - "code": "N02.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Recurrent and persistent hematuria with unspecified morphologic changes" - }, - { - "_id": "609d8393b789027a3282e92b", - "code": "N03.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with minor glomerular abnormality" - }, - { - "_id": "609d8393b789027a3282e92c", - "code": "N03.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with focal and segmental glomerular lesions" - }, - { - "_id": "609d8393b789027a3282e92d", - "code": "N03.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with diffuse membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e92e", - "code": "N03.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with diffuse mesangial proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e92f", - "code": "N03.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e930", - "code": "N03.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with diffuse mesangiocapillary glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e931", - "code": "N03.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with dense deposit disease" - }, - { - "_id": "609d8393b789027a3282e932", - "code": "N03.7", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with diffuse crescentic glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e933", - "code": "N03.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with other morphologic changes" - }, - { - "_id": "609d8393b789027a3282e934", - "code": "N03.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic nephritic syndrome with unspecified morphologic changes" - }, - { - "_id": "609d8393b789027a3282e935", - "code": "N04.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with minor glomerular abnormality" - }, - { - "_id": "609d8393b789027a3282e936", - "code": "N04.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with focal and segmental glomerular lesions" - }, - { - "_id": "609d8393b789027a3282e937", - "code": "N04.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with diffuse membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e938", - "code": "N04.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with diffuse mesangial proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e939", - "code": "N04.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e93a", - "code": "N04.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with diffuse mesangiocapillary glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e93b", - "code": "N04.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with dense deposit disease" - }, - { - "_id": "609d8393b789027a3282e93c", - "code": "N04.7", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with diffuse crescentic glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e93d", - "code": "N04.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with other morphologic changes" - }, - { - "_id": "609d8393b789027a3282e93e", - "code": "N04.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrotic syndrome with unspecified morphologic changes" - }, - { - "_id": "609d8393b789027a3282e93f", - "code": "N05.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with minor glomerular abnormality" - }, - { - "_id": "609d8393b789027a3282e940", - "code": "N05.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with focal and segmental glomerular lesions" - }, - { - "_id": "609d8393b789027a3282e941", - "code": "N05.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with diffuse membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e942", - "code": "N05.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with diffuse mesangial proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e943", - "code": "N05.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e944", - "code": "N05.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with diffuse mesangiocapillary glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e945", - "code": "N05.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with dense deposit disease" - }, - { - "_id": "609d8393b789027a3282e946", - "code": "N05.7", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with diffuse crescentic glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e947", - "code": "N05.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with other morphologic changes" - }, - { - "_id": "609d8393b789027a3282e948", - "code": "N05.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified nephritic syndrome with unspecified morphologic changes" - }, - { - "_id": "609d8393b789027a3282e949", - "code": "N06.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with minor glomerular abnormality" - }, - { - "_id": "609d8393b789027a3282e94a", - "code": "N06.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with focal and segmental glomerular lesions" - }, - { - "_id": "609d8393b789027a3282e94b", - "code": "N06.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with diffuse membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e94c", - "code": "N06.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with diffuse mesangial proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e94d", - "code": "N06.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e94e", - "code": "N06.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with diffuse mesangiocapillary glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e94f", - "code": "N06.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with dense deposit disease" - }, - { - "_id": "609d8393b789027a3282e950", - "code": "N06.7", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with diffuse crescentic glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e951", - "code": "N06.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with other morphologic lesion" - }, - { - "_id": "609d8393b789027a3282e952", - "code": "N06.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Isolated proteinuria with unspecified morphologic lesion" - }, - { - "_id": "609d8393b789027a3282e953", - "code": "N07.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with minor glomerular abnormality" - }, - { - "_id": "609d8393b789027a3282e954", - "code": "N07.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with focal and segmental glomerular lesions" - }, - { - "_id": "609d8393b789027a3282e955", - "code": "N07.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with diffuse membranous glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e956", - "code": "N07.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with diffuse mesangial proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e957", - "code": "N07.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with diffuse endocapillary proliferative glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e958", - "code": "N07.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with diffuse mesangiocapillary glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e959", - "code": "N07.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with dense deposit disease" - }, - { - "_id": "609d8393b789027a3282e95a", - "code": "N07.7", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with diffuse crescentic glomerulonephritis" - }, - { - "_id": "609d8393b789027a3282e95b", - "code": "N07.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with other morphologic lesions" - }, - { - "_id": "609d8393b789027a3282e95c", - "code": "N07.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hereditary nephropathy, not elsewhere classified with unspecified morphologic lesions" - }, - { - "_id": "609d8393b789027a3282e95d", - "code": "N08", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Glomerular disorders in diseases classified elsewhere" - }, - { - "_id": "609d8393b789027a3282e95e", - "code": "N14.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Analgesic nephropathy" - }, - { - "_id": "609d8393b789027a3282e95f", - "code": "N14.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephropathy induced by other drugs, medicaments and biological substances" - }, - { - "_id": "609d8393b789027a3282e960", - "code": "N14.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephropathy induced by unspecified drug, medicament or biological substance" - }, - { - "_id": "609d8393b789027a3282e961", - "code": "N14.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephropathy induced by heavy metals" - }, - { - "_id": "609d8393b789027a3282e962", - "code": "N14.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Toxic nephropathy, not elsewhere classified" - }, - { - "_id": "609d8393b789027a3282e963", - "code": "N25.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renal osteodystrophy" - }, - { - "_id": "609d8393b789027a3282e964", - "code": "N25.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Nephrogenic diabetes insipidus" - }, - { - "_id": "609d8393b789027a3282e965", - "code": "N25.81", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Secondary hyperparathyroidism of renal origin" - }, - { - "_id": "609d8393b789027a3282e966", - "code": "N25.89", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other disorders resulting from impaired renal tubular function" - }, - { - "_id": "609d8393b789027a3282e967", - "code": "N25.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Disorder resulting from impaired renal tubular function, unspecified" - }, - { - "_id": "609d8393b789027a3282e968", - "code": "N26.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Atrophy of kidney (terminal)" - }, - { - "_id": "609d8393b789027a3282e969", - "code": "N26.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Page kidney" - }, - { - "_id": "609d8393b789027a3282e96a", - "code": "N26.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renal sclerosis, unspecified" - }, - { - "_id": "609d8393b789027a3282e96b", - "code": "Q60.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renal agenesis, unilateral" - }, - { - "_id": "609d8393b789027a3282e96c", - "code": "Q60.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renal agenesis, bilateral" - }, - { - "_id": "609d8393b789027a3282e96d", - "code": "Q60.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renal agenesis, unspecified" - }, - { - "_id": "609d8393b789027a3282e96e", - "code": "Q60.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renal hypoplasia, unilateral" - }, - { - "_id": "609d8393b789027a3282e96f", - "code": "Q60.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renal hypoplasia, bilateral" - }, - { - "_id": "609d8393b789027a3282e970", - "code": "Q60.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renal hypoplasia, unspecified" - }, - { - "_id": "609d8393b789027a3282e971", - "code": "Q60.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Potter's syndrome" - }, - { - "_id": "609d8393b789027a3282e972", - "code": "Q61.00", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Congenital renal cyst, unspecified" - }, - { - "_id": "609d8393b789027a3282e973", - "code": "Q61.01", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Congenital single renal cyst" - }, - { - "_id": "609d8393b789027a3282e974", - "code": "Q61.02", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Congenital multiple renal cysts" - }, - { - "_id": "609d8393b789027a3282e975", - "code": "Q61.11", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Cystic dilatation of collecting ducts" - }, - { - "_id": "609d8393b789027a3282e976", - "code": "Q61.19", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other polycystic kidney, infantile type" - }, - { - "_id": "609d8393b789027a3282e977", - "code": "Q61.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Polycystic kidney, adult type" - }, - { - "_id": "609d8393b789027a3282e978", - "code": "Q61.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Polycystic kidney, unspecified" - }, - { - "_id": "609d8393b789027a3282e979", - "code": "Q61.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renal dysplasia" - }, - { - "_id": "609d8393b789027a3282e97a", - "code": "Q61.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Medullary cystic kidney" - }, - { - "_id": "609d8393b789027a3282e97b", - "code": "Q61.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other cystic kidney diseases" - }, - { - "_id": "609d8393b789027a3282e97c", - "code": "Q61.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Cystic kidney disease, unspecified" - } - ], - "display_name": "Glomerulonephritis and Nephrotic Syndrome", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1018", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e431", - "concepts": [ - { - "_id": "609d8393b789027a3282e97d", - "code": "185460008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit request by patient (procedure)" - }, - { - "_id": "609d8393b789027a3282e97e", - "code": "185462000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit request by relative (procedure)" - }, - { - "_id": "609d8393b789027a3282e97f", - "code": "185466002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit for urgent condition (procedure)" - }, - { - "_id": "609d8393b789027a3282e980", - "code": "185467006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit for acute condition (procedure)" - }, - { - "_id": "609d8393b789027a3282e981", - "code": "185468001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit for chronic condition (procedure)" - }, - { - "_id": "609d8393b789027a3282e982", - "code": "185470005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit elderly assessment (procedure)" - }, - { - "_id": "609d8393b789027a3282e983", - "code": "225929007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Joint home visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e984", - "code": "315205008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bank holiday home visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e985", - "code": "439708006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e986", - "code": "698704008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit for rheumatology service (procedure)" - }, - { - "_id": "609d8393b789027a3282e987", - "code": "704126008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Home visit for anticoagulant drug monitoring (procedure)" - }, - { - "_id": "609d8393b789027a3282e988", - "code": "99341", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for the evaluation and management of a new patient, which requires these 3 key components: A problem focused history; A problem focused examination; and Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of low severity. Typically, 20 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282e989", - "code": "99342", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for the evaluation and management of a new patient, which requires these 3 key components: An expanded problem focused history; An expanded problem focused examination; and Medical decision making of low complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate severity. Typically, 30 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282e98a", - "code": "99343", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for the evaluation and management of a new patient, which requires these 3 key components: A detailed history; A detailed examination; and Medical decision making of moderate complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 45 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282e98b", - "code": "99344", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for the evaluation and management of a new patient, which requires these 3 key components: A comprehensive history; A comprehensive examination; and Medical decision making of moderate complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of high severity. Typically, 60 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282e98c", - "code": "99345", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for the evaluation and management of a new patient, which requires these 3 key components: A comprehensive history; A comprehensive examination; and Medical decision making of high complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the patient is unstable or has developed a significant new problem requiring immediate physician attention. Typically, 75 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282e98d", - "code": "99347", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: A problem focused interval history; A problem focused examination; Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are self limited or minor. Typically, 15 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282e98e", - "code": "99348", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: An expanded problem focused interval history; An expanded problem focused examination; Medical decision making of low complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of low to moderate severity. Typically, 25 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282e98f", - "code": "99349", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: A detailed interval history; A detailed examination; Medical decision making of moderate complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are moderate to high severity. Typically, 40 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282e990", - "code": "99350", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Home visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: A comprehensive interval history; A comprehensive examination; Medical decision making of moderate to high complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. The patient may be unstable or may have developed a significant new problem requiring immediate physician attention. Typically, 60 minutes are spent face-to-face with the patient and/or family." - } - ], - "display_name": "Home Healthcare Services", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.101.12.1016", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e432", - "concepts": [ - { - "_id": "609d8393b789027a3282e991", - "code": "111438007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertension secondary to renal disease in obstetric context (disorder)" - }, - { - "_id": "609d8393b789027a3282e992", - "code": "123799005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renovascular hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e993", - "code": "123800009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Goldblatt hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e994", - "code": "14973001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal sclerosis with hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e995", - "code": "193003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Benign hypertensive renal disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e996", - "code": "194774006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2017-09", - "display_name": "Hypertensive renal disease with renal failure (disorder)" - }, - { - "_id": "609d8393b789027a3282e997", - "code": "194783001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Secondary malignant renovascular hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e998", - "code": "19769006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "High-renin essential hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e999", - "code": "23130000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Paroxysmal hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e99a", - "code": "28119000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e99b", - "code": "285831000119108", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignant hypertensive chronic kidney disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e99c", - "code": "285841000119104", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignant hypertensive end stage renal disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e99d", - "code": "286371000119107", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignant hypertensive end stage renal disease on dialysis (disorder)" - }, - { - "_id": "609d8393b789027a3282e99e", - "code": "32916005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e99f", - "code": "38481006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertensive renal disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e9a0", - "code": "39018007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal arterial hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e9a1", - "code": "397748008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertension with albuminuria (disorder)" - }, - { - "_id": "609d8393b789027a3282e9a2", - "code": "403.01", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9a3", - "code": "403.10", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified" - }, - { - "_id": "609d8393b789027a3282e9a4", - "code": "403.11", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9a5", - "code": "403.90", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified" - }, - { - "_id": "609d8393b789027a3282e9a6", - "code": "403.91", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9a7", - "code": "404.00", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified" - }, - { - "_id": "609d8393b789027a3282e9a8", - "code": "404.01", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified" - }, - { - "_id": "609d8393b789027a3282e9a9", - "code": "404.02", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9aa", - "code": "404.03", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9ab", - "code": "404.10", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified" - }, - { - "_id": "609d8393b789027a3282e9ac", - "code": "404.11", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified" - }, - { - "_id": "609d8393b789027a3282e9ad", - "code": "404.12", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9ae", - "code": "404.13", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9af", - "code": "404.90", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified" - }, - { - "_id": "609d8393b789027a3282e9b0", - "code": "404.91", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified" - }, - { - "_id": "609d8393b789027a3282e9b1", - "code": "404.92", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9b2", - "code": "404.93", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9b3", - "code": "427889009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertension associated with transplantation (disorder)" - }, - { - "_id": "609d8393b789027a3282e9b4", - "code": "428575007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertension secondary to kidney transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9b5", - "code": "473392002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertensive nephrosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e9b6", - "code": "49220004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertensive renal failure (disorder)" - }, - { - "_id": "609d8393b789027a3282e9b7", - "code": "57684003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Parenchymal renal hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e9b8", - "code": "62240004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Benign arteriolar nephrosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e9b9", - "code": "65443008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignant hypertensive renal disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e9ba", - "code": "66052004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Benign hypertensive heart AND renal disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e9bb", - "code": "66610008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignant hypertensive heart AND renal disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e9bc", - "code": "73410007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Benign secondary renovascular hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282e9bd", - "code": "78544004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic hypertensive uremia (disorder)" - }, - { - "_id": "609d8393b789027a3282e9be", - "code": "81363003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignant arteriolar nephrosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e9bf", - "code": "86234004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertensive heart AND renal disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e9c0", - "code": "90493000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Arteriolar nephrosclerosis (disorder)" - }, - { - "_id": "609d8393b789027a3282e9c1", - "code": "I12.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9c2", - "code": "I12.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hypertensive chronic kidney disease with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e9c3", - "code": "I13.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hypertensive heart and chronic kidney disease with heart failure and stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e9c4", - "code": "I13.10", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hypertensive heart and chronic kidney disease without heart failure, with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease" - }, - { - "_id": "609d8393b789027a3282e9c5", - "code": "I13.11", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hypertensive heart and chronic kidney disease without heart failure, with stage 5 chronic kidney disease, or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9c6", - "code": "I13.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease, or end stage renal disease" - }, - { - "_id": "609d8393b789027a3282e9c7", - "code": "I15.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Renovascular hypertension" - }, - { - "_id": "609d8393b789027a3282e9c8", - "code": "I15.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Hypertension secondary to other renal disorders" - } - ], - "display_name": "Hypertensive Chronic Kidney Disease", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1017", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e433", - "concepts": [ - { - "_id": "609d8393b789027a3282e9c9", - "code": "0TY00Z0", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Transplantation of Right Kidney, Allogeneic, Open Approach" - }, - { - "_id": "609d8393b789027a3282e9ca", - "code": "0TY00Z1", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Transplantation of Right Kidney, Syngeneic, Open Approach" - }, - { - "_id": "609d8393b789027a3282e9cb", - "code": "0TY00Z2", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Transplantation of Right Kidney, Zooplastic, Open Approach" - }, - { - "_id": "609d8393b789027a3282e9cc", - "code": "0TY10Z0", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Transplantation of Left Kidney, Allogeneic, Open Approach" - }, - { - "_id": "609d8393b789027a3282e9cd", - "code": "0TY10Z1", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Transplantation of Left Kidney, Syngeneic, Open Approach" - }, - { - "_id": "609d8393b789027a3282e9ce", - "code": "0TY10Z2", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Transplantation of Left Kidney, Zooplastic, Open Approach" - }, - { - "_id": "609d8393b789027a3282e9cf", - "code": "122531000119108", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Lymphoproliferative disorder following kidney transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d0", - "code": "128631000119109", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic graft-versus-host disease following kidney transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d1", - "code": "197747000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal tubulo-interstitial disorders in transplant rejection (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d2", - "code": "213150003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Kidney transplant failure and rejection (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d3", - "code": "236436003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "End stage renal failure with renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d4", - "code": "236569000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Primary non-function of renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d5", - "code": "236570004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal transplant rejection (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d6", - "code": "236571000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hyperacute rejection of renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d7", - "code": "236572007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Accelerated rejection of renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d8", - "code": "236573002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Very mild acute rejection of renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9d9", - "code": "236574008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute rejection of renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9da", - "code": "236575009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute rejection of renal transplant - grade I (disorder)" - }, - { - "_id": "609d8393b789027a3282e9db", - "code": "236576005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute rejection of renal transplant - grade II (disorder)" - }, - { - "_id": "609d8393b789027a3282e9dc", - "code": "236577001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute rejection of renal transplant - grade III (disorder)" - }, - { - "_id": "609d8393b789027a3282e9dd", - "code": "236578006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic rejection of renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9de", - "code": "236579003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic rejection of renal transplant - grade 1 (disorder)" - }, - { - "_id": "609d8393b789027a3282e9df", - "code": "236580000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic rejection of renal transplant - grade II (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e0", - "code": "236581001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic rejection of renal transplant - grade III (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e1", - "code": "236582008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute-on-chronic rejection of renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e2", - "code": "236583003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Failed renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e3", - "code": "236584009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Perfusion injury of renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e4", - "code": "236587002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Transplant glomerulopathy (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e5", - "code": "236588007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Transplant glomerulopathy - early form (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e6", - "code": "236589004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Transplant glomerulopathy - late form (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e7", - "code": "236614007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Perirenal and periureteric post-transplant lymphocele (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e8", - "code": "277010001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Unexplained episode of renal transplant dysfunction (disorder)" - }, - { - "_id": "609d8393b789027a3282e9e9", - "code": "277011002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Pre-existing disease in renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9ea", - "code": "426136000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Delayed renal graft function (disorder)" - }, - { - "_id": "609d8393b789027a3282e9eb", - "code": "428575007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertension secondary to kidney transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9ec", - "code": "429451003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Disorder related to renal transplantation (disorder)" - }, - { - "_id": "609d8393b789027a3282e9ed", - "code": "473195006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Normal renal function of transplanted kidney (finding)" - }, - { - "_id": "609d8393b789027a3282e9ee", - "code": "50300", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Donor nephrectomy (including cold preservation); from cadaver donor, unilateral or bilateral" - }, - { - "_id": "609d8393b789027a3282e9ef", - "code": "50320", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Donor nephrectomy (including cold preservation); open, from living donor" - }, - { - "_id": "609d8393b789027a3282e9f0", - "code": "50340", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Recipient nephrectomy (separate procedure)" - }, - { - "_id": "609d8393b789027a3282e9f1", - "code": "50360", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Renal allotransplantation, implantation of graft; without recipient nephrectomy" - }, - { - "_id": "609d8393b789027a3282e9f2", - "code": "50365", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Renal allotransplantation, implantation of graft; with recipient nephrectomy" - }, - { - "_id": "609d8393b789027a3282e9f3", - "code": "50370", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Removal of transplanted renal allograft" - }, - { - "_id": "609d8393b789027a3282e9f4", - "code": "50380", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Renal autotransplantation, reimplantation of kidney" - }, - { - "_id": "609d8393b789027a3282e9f5", - "code": "58797008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Complication of transplanted kidney (disorder)" - }, - { - "_id": "609d8393b789027a3282e9f6", - "code": "703048006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Vesicoureteric reflux after renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282e9f7", - "code": "707148007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent post-transplant renal disease (disorder)" - }, - { - "_id": "609d8393b789027a3282e9f8", - "code": "713825007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renal artery stenosis of transplanted kidney (disorder)" - }, - { - "_id": "609d8393b789027a3282e9f9", - "code": "S2065", - "code_system_name": "HCPCS", - "code_system_oid": "2.16.840.1.113883.6.285", - "code_system_version": "2019", - "display_name": "Simultaneous pancreas kidney transplantation" - } - ], - "display_name": "Kidney Transplant", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1012", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e434", - "concepts": [ - { - "_id": "609d8393b789027a3282e9fa", - "code": "185463005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Visit out of hours (procedure)" - }, - { - "_id": "609d8393b789027a3282e9fb", - "code": "185464004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Out of hours visit - not night visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e9fc", - "code": "185465003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Weekend visit (procedure)" - }, - { - "_id": "609d8393b789027a3282e9fd", - "code": "30346009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-03", - "display_name": "Evaluation and management of established outpatient in office or other outpatient facility (procedure)" - }, - { - "_id": "609d8393b789027a3282e9fe", - "code": "3391000175108", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Office visit for pediatric care and assessment (procedure)" - }, - { - "_id": "609d8393b789027a3282e9ff", - "code": "37894004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-03", - "display_name": "Evaluation and management of new outpatient in office or other outpatient facility (procedure)" - }, - { - "_id": "609d8393b789027a3282ea00", - "code": "439740005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Postoperative follow-up visit (procedure)" - }, - { - "_id": "609d8393b789027a3282ea01", - "code": "99201", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: A problem focused history; A problem focused examination; Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are self limited or minor. Typically, 10 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282ea02", - "code": "99202", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: An expanded problem focused history; An expanded problem focused examination; Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of low to moderate severity. Typically, 20 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282ea03", - "code": "99203", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: A detailed history; A detailed examination; Medical decision making of low complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate severity. Typically, 30 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282ea04", - "code": "99204", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: A comprehensive history; A comprehensive examination; Medical decision making of moderate complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 45 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282ea05", - "code": "99205", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: A comprehensive history; A comprehensive examination; Medical decision making of high complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 60 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282ea06", - "code": "99212", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: A problem focused history; A problem focused examination; Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are self limited or minor. Typically, 10 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282ea07", - "code": "99213", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: An expanded problem focused history; An expanded problem focused examination; Medical decision making of low complexity. Counseling and coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of low to moderate severity. Typically, 15 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282ea08", - "code": "99214", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: A detailed history; A detailed examination; Medical decision making of moderate complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 25 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8393b789027a3282ea09", - "code": "99215", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: A comprehensive history; A comprehensive examination; Medical decision making of high complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 40 minutes are spent face-to-face with the patient and/or family." - } - ], - "display_name": "Office Visit", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.101.12.1001", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e435", - "concepts": [ - { - "_id": "609d8393b789027a3282ea0a", - "code": "233591003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemoperfusion (procedure)" - }, - { - "_id": "609d8393b789027a3282ea0b", - "code": "251000124108", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dialysis care plan (regime/therapy)" - }, - { - "_id": "609d8393b789027a3282ea0c", - "code": "311000124103", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peritoneal dialysis care plan (regime/therapy)" - }, - { - "_id": "609d8393b789027a3282ea0d", - "code": "3257008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Empty and measure peritoneal dialysis fluid (procedure)" - }, - { - "_id": "609d8393b789027a3282ea0e", - "code": "385970002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dialysis care assessment (procedure)" - }, - { - "_id": "609d8393b789027a3282ea0f", - "code": "385971003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dialysis care (regime/therapy)" - }, - { - "_id": "609d8393b789027a3282ea10", - "code": "385973000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dialysis care management (procedure)" - }, - { - "_id": "609d8393b789027a3282ea11", - "code": "406168002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dialysis access maintenance (regime/therapy)" - }, - { - "_id": "609d8393b789027a3282ea12", - "code": "717738008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peritoneal dialysis care assessment (procedure)" - }, - { - "_id": "609d8393b789027a3282ea13", - "code": "718019005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodialysis care management (procedure)" - }, - { - "_id": "609d8393b789027a3282ea14", - "code": "718308002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peritoneal dialysis care (regime/therapy)" - }, - { - "_id": "609d8393b789027a3282ea15", - "code": "718330001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodialysis care (regime/therapy)" - }, - { - "_id": "609d8393b789027a3282ea16", - "code": "718331002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hemodialysis care assessment (procedure)" - }, - { - "_id": "609d8393b789027a3282ea17", - "code": "73257006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peritoneal dialysis catheter maintenance (procedure)" - } - ], - "display_name": "Other Services Related to Dialysis", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1015", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e436", - "concepts": [ - { - "_id": "609d8393b789027a3282ea18", - "code": "99395", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Periodic comprehensive preventive medicine reevaluation and management of an individual including an age and gender appropriate history, examination, counseling/anticipatory guidance/risk factor reduction interventions, and the ordering of laboratory/diagnostic procedures, established patient; 18-39 years" - }, - { - "_id": "609d8393b789027a3282ea19", - "code": "99396", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Periodic comprehensive preventive medicine reevaluation and management of an individual including an age and gender appropriate history, examination, counseling/anticipatory guidance/risk factor reduction interventions, and the ordering of laboratory/diagnostic procedures, established patient; 40-64 years" - }, - { - "_id": "609d8393b789027a3282ea1a", - "code": "99397", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Periodic comprehensive preventive medicine reevaluation and management of an individual including an age and gender appropriate history, examination, counseling/anticipatory guidance/risk factor reduction interventions, and the ordering of laboratory/diagnostic procedures, established patient; 65 years and older" - } - ], - "display_name": "Preventive Care Services - Established Office Visit, 18 and Up", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.101.12.1025", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e437", - "concepts": [ - { - "_id": "609d8393b789027a3282ea1b", - "code": "99385", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Initial comprehensive preventive medicine evaluation and management of an individual including an age and gender appropriate history, examination, counseling/anticipatory guidance/risk factor reduction interventions, and the ordering of laboratory/diagnostic procedures, new patient; 18-39 years" - }, - { - "_id": "609d8393b789027a3282ea1c", - "code": "99386", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Initial comprehensive preventive medicine evaluation and management of an individual including an age and gender appropriate history, examination, counseling/anticipatory guidance/risk factor reduction interventions, and the ordering of laboratory/diagnostic procedures, new patient; 40-64 years" - }, - { - "_id": "609d8393b789027a3282ea1d", - "code": "99387", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Initial comprehensive preventive medicine evaluation and management of an individual including an age and gender appropriate history, examination, counseling/anticipatory guidance/risk factor reduction interventions, and the ordering of laboratory/diagnostic procedures, new patient; 65 years and older" - } - ], - "display_name": "Preventive Care Services-Initial Office Visit, 18 and Up", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.101.12.1023", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e438", - "concepts": [ - { - "_id": "609d8393b789027a3282ea1e", - "code": "12178007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrogenous proteinuria (finding)" - }, - { - "_id": "609d8393b789027a3282ea1f", - "code": "167582007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Urine microalbumin positive (finding)" - }, - { - "_id": "609d8393b789027a3282ea20", - "code": "263808002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Microproteinuria (finding)" - }, - { - "_id": "609d8393b789027a3282ea21", - "code": "264867001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Nephrotic range proteinuria (finding)" - }, - { - "_id": "609d8393b789027a3282ea22", - "code": "274769005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Albuminuria (finding)" - }, - { - "_id": "609d8393b789027a3282ea23", - "code": "29738008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Proteinuria (finding)" - }, - { - "_id": "609d8393b789027a3282ea24", - "code": "312975006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Microalbuminuria (finding)" - }, - { - "_id": "609d8393b789027a3282ea25", - "code": "34993002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mixed proteinuria (finding)" - }, - { - "_id": "609d8393b789027a3282ea26", - "code": "791.0", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Proteinuria" - }, - { - "_id": "609d8393b789027a3282ea27", - "code": "R80.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Persistent proteinuria, unspecified" - }, - { - "_id": "609d8393b789027a3282ea28", - "code": "R80.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other proteinuria" - }, - { - "_id": "609d8393b789027a3282ea29", - "code": "R80.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Proteinuria, unspecified" - } - ], - "display_name": "Proteinuria", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.526.3.1003", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e439", - "concepts": [ - { - "_id": "609d8393b789027a3282ea2a", - "code": "11218-5", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/volume] in Urine by Test strip" - }, - { - "_id": "609d8393b789027a3282ea2b", - "code": "12842-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/volume] in 12 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea2c", - "code": "13705-9", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin/Creatinine [Mass Ratio] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea2d", - "code": "13801-6", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein/Creatinine [Mass Ratio] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea2e", - "code": "13986-5", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin/Protein.total in 24 hour Urine by Electrophoresis" - }, - { - "_id": "609d8393b789027a3282ea2f", - "code": "13992-3", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin/Protein.total in Urine by Electrophoresis" - }, - { - "_id": "609d8393b789027a3282ea30", - "code": "14956-7", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/time] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea31", - "code": "14957-5", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/volume] in Urine" - }, - { - "_id": "609d8393b789027a3282ea32", - "code": "14958-3", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin/Creatinine [Mass Ratio] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea33", - "code": "14959-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin/Creatinine [Mass Ratio] in Urine" - }, - { - "_id": "609d8393b789027a3282ea34", - "code": "1753-3", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Presence] in Urine" - }, - { - "_id": "609d8393b789027a3282ea35", - "code": "1754-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Mass/volume] in Urine" - }, - { - "_id": "609d8393b789027a3282ea36", - "code": "1755-8", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Mass/time] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea37", - "code": "1757-4", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin renal clearance in 24 hour" - }, - { - "_id": "609d8393b789027a3282ea38", - "code": "17819-4", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin/Protein.total by Electrophoresis in Urine collected for unspecified duration" - }, - { - "_id": "609d8393b789027a3282ea39", - "code": "18373-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/time] in 6 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea3a", - "code": "20454-5", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Presence] in Urine by Test strip" - }, - { - "_id": "609d8393b789027a3282ea3b", - "code": "20621-9", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin/Creatinine [Presence] in Urine by Test strip" - }, - { - "_id": "609d8393b789027a3282ea3c", - "code": "21059-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Mass/volume] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea3d", - "code": "21482-5", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/volume] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea3e", - "code": "26801-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/time] in 12 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea3f", - "code": "27298-9", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Units/volume] in Urine" - }, - { - "_id": "609d8393b789027a3282ea40", - "code": "2887-8", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Presence] in Urine" - }, - { - "_id": "609d8393b789027a3282ea41", - "code": "2888-6", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/volume] in Urine" - }, - { - "_id": "609d8393b789027a3282ea42", - "code": "2889-4", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/time] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea43", - "code": "2890-2", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein/Creatinine [Mass Ratio] in Urine" - }, - { - "_id": "609d8393b789027a3282ea44", - "code": "29946-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Presence] in 24 hour Urine by Electrophoresis" - }, - { - "_id": "609d8393b789027a3282ea45", - "code": "30000-4", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin/Creatinine [Ratio] in Urine" - }, - { - "_id": "609d8393b789027a3282ea46", - "code": "30001-2", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin/Creatinine [Ratio] in Urine by Test strip" - }, - { - "_id": "609d8393b789027a3282ea47", - "code": "30003-8", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/volume] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea48", - "code": "32209-9", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Presence] in 24 hour Urine by Test strip" - }, - { - "_id": "609d8393b789027a3282ea49", - "code": "32294-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin/Creatinine [Ratio] in Urine" - }, - { - "_id": "609d8393b789027a3282ea4a", - "code": "32551-4", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass] in Urine collected for unspecified duration" - }, - { - "_id": "609d8393b789027a3282ea4b", - "code": "34366-5", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein/Creatinine [Ratio] in Urine" - }, - { - "_id": "609d8393b789027a3282ea4c", - "code": "35663-4", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/volume] in Urine collected for unspecified duration" - }, - { - "_id": "609d8393b789027a3282ea4d", - "code": "40486-3", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein/Creatinine [Ratio] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea4e", - "code": "40662-9", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/time] in 12 hour Urine --resting" - }, - { - "_id": "609d8393b789027a3282ea4f", - "code": "40663-7", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/time] in 12 hour Urine --upright" - }, - { - "_id": "609d8393b789027a3282ea50", - "code": "43605-5", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/volume] in 4 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea51", - "code": "43606-3", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/time] in 4 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea52", - "code": "43607-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/time] in 12 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea53", - "code": "44292-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin/Creatinine [Mass Ratio] in 12 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea54", - "code": "47558-2", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin/Protein.total in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea55", - "code": "49002-9", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Mass/time] in Urine collected for unspecified duration" - }, - { - "_id": "609d8393b789027a3282ea56", - "code": "49023-5", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/time] in Urine collected for unspecified duration" - }, - { - "_id": "609d8393b789027a3282ea57", - "code": "50209-6", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Mass/time] in Urine collected for unspecified duration --supine" - }, - { - "_id": "609d8393b789027a3282ea58", - "code": "50561-0", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/volume] in Urine by Automated test strip" - }, - { - "_id": "609d8393b789027a3282ea59", - "code": "50949-7", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Presence] in Urine by Test strip" - }, - { - "_id": "609d8393b789027a3282ea5a", - "code": "51190-7", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Mass/volume] in 24 hour Urine by Electrophoresis" - }, - { - "_id": "609d8393b789027a3282ea5b", - "code": "53121-0", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/time] in 1 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea5c", - "code": "53525-2", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Presence] in Urine by SSA method" - }, - { - "_id": "609d8393b789027a3282ea5d", - "code": "53530-2", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/volume] in 24 hour Urine by Detection limit <= 1.0 mg/L" - }, - { - "_id": "609d8393b789027a3282ea5e", - "code": "53531-0", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/volume] in Urine by Detection limit <= 1.0 mg/L" - }, - { - "_id": "609d8393b789027a3282ea5f", - "code": "53532-8", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/time] in 24 hour Urine by Detection limit <= 1.0 mg/L" - }, - { - "_id": "609d8393b789027a3282ea60", - "code": "56553-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/time] in 8 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea61", - "code": "57369-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/volume] in 12 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea62", - "code": "57735-3", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Presence] in Urine by Automated test strip" - }, - { - "_id": "609d8393b789027a3282ea63", - "code": "5804-0", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/volume] in Urine by Test strip" - }, - { - "_id": "609d8393b789027a3282ea64", - "code": "58448-2", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin ug/min [Mass/time] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea65", - "code": "58992-9", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein [Mass/time] in 18 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea66", - "code": "59159-4", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin/Creatinine [Ratio] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea67", - "code": "60678-0", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Protein/Creatinine [Mass Ratio] in 12 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea68", - "code": "63474-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin [Mass/time] in 18 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea69", - "code": "6941-9", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Mass/time] in 24 hour Urine by Electrophoresis" - }, - { - "_id": "609d8393b789027a3282ea6a", - "code": "6942-7", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Mass/volume] in Urine by Electrophoresis" - }, - { - "_id": "609d8393b789027a3282ea6b", - "code": "76401-9", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin/Creatinine [Ratio] in 24 hour Urine" - }, - { - "_id": "609d8393b789027a3282ea6c", - "code": "77253-3", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin/Creatinine [Ratio] in Urine by Detection limit <= 1.0 mg/L" - }, - { - "_id": "609d8393b789027a3282ea6d", - "code": "77254-1", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Microalbumin/Creatinine [Ratio] in 24 hour Urine by Detection limit <= 1.0 mg/L" - }, - { - "_id": "609d8393b789027a3282ea6e", - "code": "77940-5", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin [Mass/volume] by Electrophoresis in Urine collected for unspecified duration" - }, - { - "_id": "609d8393b789027a3282ea6f", - "code": "9318-7", - "code_system_name": "LOINC", - "code_system_oid": "2.16.840.1.113883.6.1", - "code_system_version": "2.65", - "display_name": "Albumin/Creatinine [Mass Ratio] in Urine" - } - ], - "display_name": "Urine Protein Tests", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1024", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e43a", - "concepts": [ - { - "_id": "609d8393b789027a3282ea70", - "code": "180272001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282ea71", - "code": "180277007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of temporary peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282ea72", - "code": "225892009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Revision of arteriovenous shunt for renal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282ea73", - "code": "22800003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Removal of thrombus from arteriovenous shunt or cannula (procedure)" - }, - { - "_id": "609d8393b789027a3282ea74", - "code": "233468004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Creation of Cimino fistula (procedure)" - }, - { - "_id": "609d8393b789027a3282ea75", - "code": "233471007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Creation of external arteriovenous shunt (procedure)" - }, - { - "_id": "609d8393b789027a3282ea76", - "code": "233472000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Creation of Scribner shunt (procedure)" - }, - { - "_id": "609d8393b789027a3282ea77", - "code": "233547003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Cannulation of arteriovenous dialysis fistula (procedure)" - }, - { - "_id": "609d8393b789027a3282ea78", - "code": "238314006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Renewal of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282ea79", - "code": "238315007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Adjustment of chronic ambulatory peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282ea7a", - "code": "271418008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic ambulatory peritoneal dialysis catheter procedure (procedure)" - }, - { - "_id": "609d8393b789027a3282ea7b", - "code": "34163007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Revision of arteriovenous fistula with thrombectomy with nonautogenous graft (procedure)" - }, - { - "_id": "609d8393b789027a3282ea7c", - "code": "36147", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2016", - "display_name": "Introduction of needle and/or catheter, arteriovenous shunt created for dialysis (graft/fistula); initial access with complete radiological evaluation of dialysis access, including fluoroscopy, image documentation and report (includes access of shunt, injection[s] of contrast, and all necessary imaging from the arterial anastomosis and adjacent artery through entire venous outflow including the inferior or superior vena cava)" - }, - { - "_id": "609d8393b789027a3282ea7d", - "code": "36148", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2016", - "display_name": "Introduction of needle and/or catheter, arteriovenous shunt created for dialysis (graft/fistula); additional access for therapeutic intervention (List separately in addition to code for primary procedure)" - }, - { - "_id": "609d8393b789027a3282ea7e", - "code": "36800", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Insertion of cannula for hemodialysis, other purpose (separate procedure); vein to vein" - }, - { - "_id": "609d8393b789027a3282ea7f", - "code": "36810", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Insertion of cannula for hemodialysis, other purpose (separate procedure); arteriovenous, external (Scribner type)" - }, - { - "_id": "609d8393b789027a3282ea80", - "code": "36815", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Insertion of cannula for hemodialysis, other purpose (separate procedure); arteriovenous, external revision, or closure" - }, - { - "_id": "609d8393b789027a3282ea81", - "code": "36818", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Arteriovenous anastomosis, open; by upper arm cephalic vein transposition" - }, - { - "_id": "609d8393b789027a3282ea82", - "code": "36819", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Arteriovenous anastomosis, open; by upper arm basilic vein transposition" - }, - { - "_id": "609d8393b789027a3282ea83", - "code": "36820", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Arteriovenous anastomosis, open; by forearm vein transposition" - }, - { - "_id": "609d8393b789027a3282ea84", - "code": "36821", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Arteriovenous anastomosis, open; direct, any site (eg, Cimino type) (separate procedure)" - }, - { - "_id": "609d8393b789027a3282ea85", - "code": "36831", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Thrombectomy, open, arteriovenous fistula without revision, autogenous or nonautogenous dialysis graft (separate procedure)" - }, - { - "_id": "609d8393b789027a3282ea86", - "code": "36832", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Revision, open, arteriovenous fistula; without thrombectomy, autogenous or nonautogenous dialysis graft (separate procedure)" - }, - { - "_id": "609d8393b789027a3282ea87", - "code": "36833", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Revision, open, arteriovenous fistula; with thrombectomy, autogenous or nonautogenous dialysis graft (separate procedure)" - }, - { - "_id": "609d8393b789027a3282ea88", - "code": "426340003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Creation of graft fistula for dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282ea89", - "code": "427992007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Removal of thrombus of arteriovenous fistula (procedure)" - }, - { - "_id": "609d8393b789027a3282ea8a", - "code": "428118009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Procedure involving peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282ea8b", - "code": "431418000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Fluoroscopic percutaneous angiography of dialysis fistula with insertion of drug eluting stent (procedure)" - }, - { - "_id": "609d8393b789027a3282ea8c", - "code": "431440009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Fluoroscopic angiography of dialysis fistula using contrast with insertion of stent (procedure)" - }, - { - "_id": "609d8393b789027a3282ea8d", - "code": "431781000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of tunneled dialysis catheter using fluoroscopic guidance (procedure)" - }, - { - "_id": "609d8393b789027a3282ea8e", - "code": "432509002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of dialysis catheter using doppler ultrasound guidance (procedure)" - }, - { - "_id": "609d8393b789027a3282ea8f", - "code": "432654009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of peritoneal dialysis catheter using fluoroscopy guidance (procedure)" - }, - { - "_id": "609d8393b789027a3282ea90", - "code": "434435000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Fluoroscopic angiography of dialysis fistula using contrast with insertion of stent graft (procedure)" - }, - { - "_id": "609d8393b789027a3282ea91", - "code": "438341004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Laparoscopic insertion of peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282ea92", - "code": "438342006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Replacement of peritoneal dialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282ea93", - "code": "439241008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Open arteriovenous anastomosis by transposition of forearm vein (procedure)" - }, - { - "_id": "609d8393b789027a3282ea94", - "code": "439322008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Open arteriovenous anastomosis by transposition of basilic vein of upper arm (procedure)" - }, - { - "_id": "609d8393b789027a3282ea95", - "code": "439349008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Open arteriovenous anastomosis by transposition of cephalic vein of upper arm (procedure)" - }, - { - "_id": "609d8393b789027a3282ea96", - "code": "439534001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Shaving of peritoneal dialysis catheter cuff (procedure)" - }, - { - "_id": "609d8393b789027a3282ea97", - "code": "443683004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Open revision of arteriovenous fistula using graft with removal of thrombus (procedure)" - }, - { - "_id": "609d8393b789027a3282ea98", - "code": "448591002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Repositioning of Tenckhoff catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282ea99", - "code": "449400003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Removal of blood clot from arteriovenous fistula (procedure)" - }, - { - "_id": "609d8393b789027a3282ea9a", - "code": "450865002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of nontunneled hemodialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282ea9b", - "code": "54817007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Arteriovenous shunt for renal dialysis by external cannula (procedure)" - }, - { - "_id": "609d8393b789027a3282ea9c", - "code": "61160002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Direct arteriovenous anastomosis (procedure)" - }, - { - "_id": "609d8393b789027a3282ea9d", - "code": "61740001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of cannula for hemodialysis, vein to vein (procedure)" - }, - { - "_id": "609d8393b789027a3282ea9e", - "code": "63421002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of cannula for hemodialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282ea9f", - "code": "676002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Peritoneal dialysis including cannulation (procedure)" - }, - { - "_id": "609d8393b789027a3282eaa0", - "code": "69380006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Venous catheterization for renal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282eaa1", - "code": "736919006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of hemodialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282eaa2", - "code": "736922008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Insertion of tunneled hemodialysis catheter (procedure)" - }, - { - "_id": "609d8393b789027a3282eaa3", - "code": "7459007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Revision of arteriovenous fistula with thrombectomy with autogenous graft (procedure)" - }, - { - "_id": "609d8393b789027a3282eaa4", - "code": "79827002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Arteriovenous anastomosis for renal dialysis (procedure)" - }, - { - "_id": "609d8393b789027a3282eaa5", - "code": "80634002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Revision of vessel-to-vessel arteriovenous cannula (procedure)" - } - ], - "display_name": "Vascular Access for Dialysis", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1011", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e43b", - "concepts": [ - { - "_id": "609d8393b789027a3282eaa6", - "code": "129151000119102", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 4 due to hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282eaa7", - "code": "129171000119106", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 3 due to hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282eaa8", - "code": "129181000119109", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 2 due to hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282eaa9", - "code": "140111000119107", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertension in chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282eaaa", - "code": "140131000119102", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertension in chronic kidney disease stage 2 due to type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282eaab", - "code": "145681000119101", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute renal failure due to tubular necrosis (disorder)" - }, - { - "_id": "609d8393b789027a3282eaac", - "code": "14669001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute renal failure syndrome (disorder)" - }, - { - "_id": "609d8393b789027a3282eaad", - "code": "236434000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "End stage renal failure untreated by renal replacement therapy (disorder)" - }, - { - "_id": "609d8393b789027a3282eaae", - "code": "236435004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "End stage renal failure on dialysis (disorder)" - }, - { - "_id": "609d8393b789027a3282eaaf", - "code": "236436003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "End stage renal failure with renal transplant (disorder)" - }, - { - "_id": "609d8393b789027a3282eab0", - "code": "284981000119102", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 2 due to benign hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282eab1", - "code": "285001000119105", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 4 due to benign hypertension (disorder)" - }, - { - "_id": "609d8393b789027a3282eab2", - "code": "285861000119100", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignant hypertensive chronic kidney disease stage 2 (disorder)" - }, - { - "_id": "609d8393b789027a3282eab3", - "code": "285881000119109", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Malignant hypertensive chronic kidney disease stage 4 (disorder)" - }, - { - "_id": "609d8393b789027a3282eab4", - "code": "429224003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Acute renal failure due to acute cortical necrosis (disorder)" - }, - { - "_id": "609d8393b789027a3282eab5", - "code": "431855005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 1 (disorder)" - }, - { - "_id": "609d8393b789027a3282eab6", - "code": "431857002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 4 (disorder)" - }, - { - "_id": "609d8393b789027a3282eab7", - "code": "433144002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 3 (disorder)" - }, - { - "_id": "609d8393b789027a3282eab8", - "code": "433146000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 5 (disorder)" - }, - { - "_id": "609d8393b789027a3282eab9", - "code": "46177005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "End-stage renal disease (disorder)" - }, - { - "_id": "609d8393b789027a3282eaba", - "code": "584.5", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Acute kidney failure with lesion of tubular necrosis" - }, - { - "_id": "609d8393b789027a3282eabb", - "code": "584.6", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Acute kidney failure with lesion of renal cortical necrosis" - }, - { - "_id": "609d8393b789027a3282eabc", - "code": "584.7", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Acute kidney failure with lesion of renal medullary [papillary] necrosis" - }, - { - "_id": "609d8393b789027a3282eabd", - "code": "584.8", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Acute kidney failure with other specified pathological lesion in kidney" - }, - { - "_id": "609d8393b789027a3282eabe", - "code": "584.9", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Acute kidney failure, unspecified" - }, - { - "_id": "609d8393b789027a3282eabf", - "code": "585.1", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic kidney disease, Stage I" - }, - { - "_id": "609d8393b789027a3282eac0", - "code": "585.2", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic kidney disease, Stage II (mild)" - }, - { - "_id": "609d8393b789027a3282eac1", - "code": "585.3", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic kidney disease, Stage III (moderate)" - }, - { - "_id": "609d8393b789027a3282eac2", - "code": "585.4", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic kidney disease, Stage IV (severe)" - }, - { - "_id": "609d8393b789027a3282eac3", - "code": "585.5", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic kidney disease, Stage V" - }, - { - "_id": "609d8393b789027a3282eac4", - "code": "585.6", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "End stage renal disease" - }, - { - "_id": "609d8393b789027a3282eac5", - "code": "585.9", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Chronic kidney disease, unspecified" - }, - { - "_id": "609d8393b789027a3282eac6", - "code": "586", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Renal failure, unspecified" - }, - { - "_id": "609d8393b789027a3282eac7", - "code": "587", - "code_system_name": "ICD9CM", - "code_system_oid": "2.16.840.1.113883.6.103", - "code_system_version": "2013", - "display_name": "Renal sclerosis, unspecified" - }, - { - "_id": "609d8393b789027a3282eac8", - "code": "700378005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 3A (disorder)" - }, - { - "_id": "609d8393b789027a3282eac9", - "code": "700379002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 3B (disorder)" - }, - { - "_id": "609d8393b789027a3282eaca", - "code": "711000119100", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 5 due to type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282eacb", - "code": "721000119107", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 4 due to type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282eacc", - "code": "722098007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease following donor nephrectomy (disorder)" - }, - { - "_id": "609d8393b789027a3282eacd", - "code": "722149000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease following excision of renal neoplasm (disorder)" - }, - { - "_id": "609d8393b789027a3282eace", - "code": "722150000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease due to systemic infection (disorder)" - }, - { - "_id": "609d8393b789027a3282eacf", - "code": "722467000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease due to traumatic loss of kidney (disorder)" - }, - { - "_id": "609d8393b789027a3282ead0", - "code": "723190009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic renal insufficiency (disorder)" - }, - { - "_id": "609d8393b789027a3282ead1", - "code": "731000119105", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 3 due to type 2 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282ead2", - "code": "90741000119107", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 3 due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282ead3", - "code": "90751000119109", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic kidney disease stage 4 due to type 1 diabetes mellitus (disorder)" - }, - { - "_id": "609d8393b789027a3282ead4", - "code": "96721000119103", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertensive heart AND chronic kidney disease stage 4 (disorder)" - }, - { - "_id": "609d8393b789027a3282ead5", - "code": "96741000119109", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypertensive heart AND chronic kidney disease stage 2 (disorder)" - }, - { - "_id": "609d8393b789027a3282ead6", - "code": "N17.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute kidney failure with tubular necrosis" - }, - { - "_id": "609d8393b789027a3282ead7", - "code": "N17.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute kidney failure with acute cortical necrosis" - }, - { - "_id": "609d8393b789027a3282ead8", - "code": "N17.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute kidney failure with medullary necrosis" - }, - { - "_id": "609d8393b789027a3282ead9", - "code": "N17.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other acute kidney failure" - }, - { - "_id": "609d8393b789027a3282eada", - "code": "N17.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Acute kidney failure, unspecified" - }, - { - "_id": "609d8393b789027a3282eadb", - "code": "N18.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic kidney disease, stage 1" - }, - { - "_id": "609d8393b789027a3282eadc", - "code": "N18.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic kidney disease, stage 2 (mild)" - }, - { - "_id": "609d8393b789027a3282eadd", - "code": "N18.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic kidney disease, stage 3 (moderate)" - }, - { - "_id": "609d8393b789027a3282eade", - "code": "N18.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic kidney disease, stage 4 (severe)" - }, - { - "_id": "609d8393b789027a3282eadf", - "code": "N18.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic kidney disease, stage 5" - }, - { - "_id": "609d8393b789027a3282eae0", - "code": "N18.6", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "End stage renal disease" - }, - { - "_id": "609d8393b789027a3282eae1", - "code": "N18.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Chronic kidney disease, unspecified" - }, - { - "_id": "609d8393b789027a3282eae2", - "code": "N19", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Unspecified kidney failure" - } - ], - "display_name": "Kidney Failure", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1003.109.12.1028", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e43c", - "concepts": [ - { - "_id": "609d8393b789027a3282eae3", - "code": "385763009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hospice care (regime/therapy)" - }, - { - "_id": "609d8393b789027a3282eae4", - "code": "385765002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hospice care management (procedure)" - } - ], - "display_name": "Hospice care ambulatory", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113762.1.4.1108.15", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e43d", - "concepts": [ - { - "_id": "609d8393b789027a3282eae5", - "code": "428371000124100", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Discharge to healthcare facility for hospice care (procedure)" - } - ], - "display_name": "Discharged to Health Care Facility for Hospice Care", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.117.1.7.1.207", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e43e", - "concepts": [ - { - "_id": "609d8393b789027a3282eae6", - "code": "428361000124107", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Discharge to home for hospice care (procedure)" - } - ], - "display_name": "Discharged to Home for Hospice Care", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.117.1.7.1.209", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8393b789027a3282e43f", - "concepts": [ - { - "_id": "609d8393b789027a3282eae7", - "code": "183452005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Emergency hospital admission (procedure)" - }, - { - "_id": "609d8393b789027a3282eae8", - "code": "32485007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hospital admission (procedure)" - }, - { - "_id": "609d8393b789027a3282eae9", - "code": "8715000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hospital admission, elective (procedure)" - } - ], - "display_name": "Encounter Inpatient", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.666.5.307", - "version": "Profile:Latest eCQM" - } - ] - }, - "code": "200", - "show_in_doc": 1, - "recorded": true - }, - { - "verb": "GET", - "path": "/measures", - "versions": [ - - ], - "query": "", - "request_data": null, - "response_data": { - "_id": "609d8395b789027a3282eaf9", - "title": "Test 169", - "description": "Percentage of patients with depression or bipolar disorder with evidence of an initial assessment that includes an appraisal for alcohol or chemical substance use", - "component_hqmf_set_ids": [ - - ], - "measure_scoring": "PROPORTION", - "calculation_method": "PATIENT", - "hqmf_id": "40280582-5801-9EE4-0158-5420363B0639", - "hqmf_set_id": "6CAFDE74-86DD-4B2C-9B44-7833C951D698", - "main_cql_library": "Test169", - "hqmf_version_number": "0.0.040", - "cms_id": "CMS4v0", - "composite": false, - "component": false, - "calculate_sdes": null, - "value_set_ids": [ - "609d8395b789027a3282eaeb", - "609d8395b789027a3282eaec", - "609d8395b789027a3282eaed", - "609d8395b789027a3282eaee", - "609d8395b789027a3282eaef", - "609d8395b789027a3282eaf0", - "609d8395b789027a3282eaf1", - "609d8395b789027a3282eaf2", - "609d8395b789027a3282eaf3", - "609d8395b789027a3282eaf4", - "609d8395b789027a3282eaf5", - "609d8395b789027a3282eaf6", - "609d8395b789027a3282eaf7" - ], - "measure_period": { - "type": "IVL_TS", - "low": { - "type": "TS", - "value": "201201010000", - "inclusive?": true, - "derived?": false - }, - "high": { - "type": "TS", - "value": "201212312359", - "inclusive?": true, - "derived?": false - }, - "width": { - "type": "PQ", - "unit": "a", - "value": "1", - "inclusive?": true, - "derived?": false - } - }, - "population_criteria": { - "IPP": { - "conjunction?": true, - "type": "IPP", - "hqmf_id": "CAC0D59A-3670-4BBC-A38E-D40E3353F39D", - "preconditions": [ - { - "id": 2, - "preconditions": [ - { - "id": 1, - "reference": "Test169__Initial_Population__B7124E2C_6EB6_4ACC_A88F_1FED2489E681" - } - ], - "conjunction_code": "allTrue" - } - ] - }, - "DENOM": { - "conjunction?": true, - "type": "DENOM", - "hqmf_id": "F3BDBF69-33BF-4F72-9266-5A83CB937729", - "preconditions": [ - { - "id": 4, - "preconditions": [ - { - "id": 3, - "reference": "Test169__Denominator__B7124E2C_6EB6_4ACC_A88F_1FED2489E681" - } - ], - "conjunction_code": "allTrue" - } - ] - }, - "NUMER": { - "conjunction?": true, - "type": "NUMER", - "hqmf_id": "72EF6B54-8108-4DA2-9492-E6D56DF23F4D", - "preconditions": [ - { - "id": 6, - "preconditions": [ - { - "id": 5, - "reference": "Test169__Numerator__B7124E2C_6EB6_4ACC_A88F_1FED2489E681" - } - ], - "conjunction_code": "allTrue" - } - ] - } - }, - "group_id": "501fdba3044a111b98000001", - "updated_at": "2021-05-13T19:52:53.349Z", - "created_at": "2021-05-13T19:52:53.349Z", - "cql_libraries": [ - { - "_id": "609d8395b789027a3282eafa", - "is_top_level": true, - "library_name": "Test169", - "library_version": "0.0.040", - "elm": { - "library": { - "identifier": { - "id": "Test169", - "version": "0.0.040" - }, - "schemaIdentifier": { - "id": "urn:hl7-org:elm", - "version": "r1" - }, - "usings": { - "def": [ - { - "localIdentifier": "System", - "uri": "urn:hl7-org:elm-types:r1" - }, - { - "localId": "1", - "localIdentifier": "QDM", - "uri": "urn:healthit-gov:qdm:v5_3", - "version": "5.3" - } - ] - }, - "parameters": { - "def": [ - { - "localId": "17", - "name": "Measurement Period", - "accessLevel": "Public", - "parameterTypeSpecifier": { - "localId": "16", - "type": "IntervalTypeSpecifier", - "pointType": { - "localId": "15", - "name": "{urn:hl7-org:elm-types:r1}DateTime", - "type": "NamedTypeSpecifier" - } - } - } - ] - }, - "valueSets": { - "def": [ - { - "localId": "2", - "name": "ONC Administrative Sex", - "id": "2.16.840.1.113762.1.4.1", - "accessLevel": "Public" - }, - { - "localId": "3", - "name": "Race", - "id": "2.16.840.1.114222.4.11.836", - "accessLevel": "Public" - }, - { - "localId": "4", - "name": "Ethnicity", - "id": "2.16.840.1.114222.4.11.837", - "accessLevel": "Public" - }, - { - "localId": "5", - "name": "Payer", - "id": "2.16.840.1.114222.4.11.3591", - "accessLevel": "Public" - }, - { - "localId": "6", - "name": "BH Antidepressant Medication", - "id": "2.16.840.1.113883.3.1257.1.972", - "accessLevel": "Public" - }, - { - "localId": "7", - "name": "BH Assessment for Alcohol or Other Drugs", - "id": "2.16.840.1.113883.3.1257.1.1604", - "accessLevel": "Public" - }, - { - "localId": "8", - "name": "BH Condition Involving Bipolar Disorder", - "id": "2.16.840.1.113883.3.1257.1.1504", - "accessLevel": "Public" - }, - { - "localId": "9", - "name": "BH Condition Involving Unipolar Depression", - "id": "2.16.840.1.113883.3.1257.1.1505", - "accessLevel": "Public" - }, - { - "localId": "10", - "name": "BH Counseling for Depression", - "id": "2.16.840.1.113883.3.1257.1.1616", - "accessLevel": "Public" - }, - { - "localId": "11", - "name": "BH Electroconvulsive Therapy", - "id": "2.16.840.1.113883.3.1257.1.1533", - "accessLevel": "Public" - }, - { - "localId": "12", - "name": "BH Mood Stabilizer Medication", - "id": "2.16.840.1.113883.3.1257.1.950", - "accessLevel": "Public" - }, - { - "localId": "13", - "name": "BH Outpatient encounter", - "id": "2.16.840.1.113883.3.464.1.49", - "accessLevel": "Public" - }, - { - "localId": "14", - "name": "BH Outpatient Psychotherapy", - "id": "2.16.840.1.113883.3.1257.1.973", - "accessLevel": "Public" - } - ] - }, - "statements": { - "def": [ - { - "name": "Patient", - "context": "Patient", - "expression": { - "type": "SingletonFrom", - "operand": { - "dataType": "{urn:healthit-gov:qdm:v5_3}Patient", - "templateId": "Patient", - "type": "Retrieve" - } - } - }, - { - "localId": "19", - "name": "SDE Ethnicity", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "19", - "s": [ - { - "value": [ - "define ", - "\"SDE Ethnicity\"", - ":\r\n\t" - ] - }, - { - "r": "18", - "s": [ - { - "value": [ - "[", - "\"Patient Characteristic Ethnicity\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Ethnicity\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "18", - "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicEthnicity", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Ethnicity", - "type": "ValueSetRef" - } - } - }, - { - "localId": "21", - "name": "SDE Payer", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "21", - "s": [ - { - "value": [ - "define ", - "\"SDE Payer\"", - ":\r\n\t" - ] - }, - { - "r": "20", - "s": [ - { - "value": [ - "[", - "\"Patient Characteristic Payer\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Payer\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "20", - "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicPayer", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Payer", - "type": "ValueSetRef" - } - } - }, - { - "localId": "23", - "name": "SDE Race", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "23", - "s": [ - { - "value": [ - "define ", - "\"SDE Race\"", - ":\r\n\t" - ] - }, - { - "r": "22", - "s": [ - { - "value": [ - "[", - "\"Patient Characteristic Race\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"Race\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "22", - "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicRace", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "Race", - "type": "ValueSetRef" - } - } - }, - { - "localId": "25", - "name": "SDE Sex", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "25", - "s": [ - { - "value": [ - "define ", - "\"SDE Sex\"", - ":\r\n\t" - ] - }, - { - "r": "24", - "s": [ - { - "value": [ - "[", - "\"Patient Characteristic Sex\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"ONC Administrative Sex\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "24", - "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicSex", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "ONC Administrative Sex", - "type": "ValueSetRef" - } - } - }, - { - "localId": "29", - "name": "Bipolar Disorder Or Unipolar Depression", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "29", - "s": [ - { - "value": [ - "define ", - "\"Bipolar Disorder Or Unipolar Depression\"", - ":\r\n\t" - ] - }, - { - "r": "28", - "s": [ - { - "r": "26", - "s": [ - { - "value": [ - "[", - "\"Diagnosis\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Condition Involving Bipolar Disorder\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "27", - "s": [ - { - "value": [ - "[", - "\"Diagnosis\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Condition Involving Unipolar Depression\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "28", - "type": "Union", - "operand": [ - { - "localId": "26", - "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Condition Involving Bipolar Disorder", - "type": "ValueSetRef" - } - }, - { - "localId": "27", - "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Condition Involving Unipolar Depression", - "type": "ValueSetRef" - } - } - ] - } - }, - { - "localId": "56", - "name": "Index Behavioral Health Outpatient Encounter", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "56", - "s": [ - { - "value": [ - "define ", - "\"Index Behavioral Health Outpatient Encounter\"", - ":\r\n\t" - ] - }, - { - "r": "55", - "s": [ - { - "s": [ - { - "r": "36", - "s": [ - { - "r": "35", - "s": [ - { - "r": "35", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Outpatient encounter\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "44", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "38", - "s": [ - { - "r": "37", - "s": [ - { - "s": [ - { - "value": [ - "\"Bipolar Disorder Or Unipolar Depression\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tsuch that " - ] - }, - { - "r": "43", - "s": [ - { - "r": "40", - "s": [ - { - "r": "39", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "40", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "overlaps before", - " " - ] - }, - { - "r": "42", - "s": [ - { - "r": "41", - "s": [ - { - "value": [ - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "42", - "s": [ - { - "value": [ - "prevalencePeriod" - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "54", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "54", - "s": [ - { - "r": "46", - "s": [ - { - "r": "45", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "46", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "starts during", - " " - ] - }, - { - "r": "53", - "s": [ - { - "value": [ - "Interval[" - ] - }, - { - "r": "48", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "47", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - }, - { - "value": [ - ", " - ] - }, - { - "r": "52", - "s": [ - { - "r": "50", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "49", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - }, - { - "value": [ - " + " - ] - }, - { - "r": "51", - "s": [ - { - "value": [ - "323 ", - "days" - ] - } - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "55", - "type": "Query", - "source": [ - { - "localId": "36", - "alias": "Encounter", - "expression": { - "localId": "35", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Outpatient encounter", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - { - "localId": "44", - "alias": "Diagnoses", - "type": "With", - "expression": { - "localId": "37", - "name": "Bipolar Disorder Or Unipolar Depression", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "43", - "type": "OverlapsBefore", - "operand": [ - { - "localId": "40", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - }, - { - "localId": "42", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - } - ] - } - } - ], - "where": { - "localId": "54", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "46", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "localId": "53", - "lowClosed": true, - "highClosed": true, - "type": "Interval", - "low": { - "localId": "48", - "type": "Start", - "operand": { - "localId": "47", - "name": "Measurement Period", - "type": "ParameterRef" - } - }, - "high": { - "localId": "52", - "type": "Add", - "operand": [ - { - "localId": "50", - "type": "Start", - "operand": { - "localId": "49", - "name": "Measurement Period", - "type": "ParameterRef" - } - }, - { - "localId": "51", - "value": 323, - "unit": "days", - "type": "Quantity" - } - ] - } - } - ] - } - } - }, - { - "localId": "75", - "name": "Procedures Ordered", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "75", - "s": [ - { - "value": [ - "define ", - "\"Procedures Ordered\"", - ":\r\n\t" - ] - }, - { - "r": "74", - "s": [ - { - "r": "72", - "s": [ - { - "value": [ - "[", - "\"Procedure, Order\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Electroconvulsive Therapy\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "73", - "s": [ - { - "value": [ - "[", - "\"Procedure, Order\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Counseling for Depression\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "74", - "type": "Union", - "operand": [ - { - "localId": "72", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedureOrder", - "templateId": "PositiveProcedureOrder", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Electroconvulsive Therapy", - "type": "ValueSetRef" - } - }, - { - "localId": "73", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedureOrder", - "templateId": "PositiveProcedureOrder", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Counseling for Depression", - "type": "ValueSetRef" - } - } - ] - } - }, - { - "localId": "82", - "name": "Procedures Performed", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "82", - "s": [ - { - "value": [ - "define ", - "\"Procedures Performed\"", - ":\r\n\t" - ] - }, - { - "r": "81", - "s": [ - { - "r": "79", - "s": [ - { - "value": [ - "[", - "\"Procedure, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Electroconvulsive Therapy\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "80", - "s": [ - { - "value": [ - "[", - "\"Procedure, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Counseling for Depression\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "81", - "type": "Union", - "operand": [ - { - "localId": "79", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedurePerformed", - "templateId": "PositiveProcedurePerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Electroconvulsive Therapy", - "type": "ValueSetRef" - } - }, - { - "localId": "80", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedurePerformed", - "templateId": "PositiveProcedurePerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Counseling for Depression", - "type": "ValueSetRef" - } - } - ] - } - }, - { - "localId": "95", - "name": "Medications Ordered", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "95", - "s": [ - { - "value": [ - "define ", - "\"Medications Ordered\"", - ":\r\n\t" - ] - }, - { - "r": "94", - "s": [ - { - "r": "92", - "s": [ - { - "value": [ - "[", - "\"Medication, Order\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Antidepressant Medication\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "93", - "s": [ - { - "value": [ - "[", - "\"Medication, Order\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Mood Stabilizer Medication\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "94", - "type": "Union", - "operand": [ - { - "localId": "92", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveMedicationOrder", - "templateId": "PositiveMedicationOrder", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Antidepressant Medication", - "type": "ValueSetRef" - } - }, - { - "localId": "93", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveMedicationOrder", - "templateId": "PositiveMedicationOrder", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Mood Stabilizer Medication", - "type": "ValueSetRef" - } - } - ] - } - }, - { - "localId": "104", - "name": "Treatments", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "104", - "s": [ - { - "value": [ - "define ", - "\"Treatments\"", - ":\r\n\t" - ] - }, - { - "r": "103", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "103", - "s": [ - { - "r": "91", - "s": [ - { - "r": "78", - "s": [ - { - "s": [ - { - "r": "77", - "s": [ - { - "r": "76", - "s": [ - { - "s": [ - { - "value": [ - "\"Procedures Ordered\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "ProcedureOrdered" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tunion " - ] - }, - { - "r": "90", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "90", - "s": [ - { - "s": [ - { - "r": "84", - "s": [ - { - "r": "83", - "s": [ - { - "s": [ - { - "value": [ - "\"Procedures Performed\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "ProceduresPerformed" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\t" - ] - }, - { - "r": "89", - "s": [ - { - "value": [ - "return " - ] - }, - { - "r": "88", - "s": [ - { - "value": [ - "\"Procedure, Order\"", - " { " - ] - }, - { - "s": [ - { - "value": [ - "authorDatetime", - ": " - ] - }, - { - "r": "87", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "86", - "s": [ - { - "r": "85", - "s": [ - { - "value": [ - "ProceduresPerformed" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "86", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - " }" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t)" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tunion " - ] - }, - { - "r": "102", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "102", - "s": [ - { - "s": [ - { - "r": "97", - "s": [ - { - "r": "96", - "s": [ - { - "s": [ - { - "value": [ - "\"Medications Ordered\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "MedicationsOrdered" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\t" - ] - }, - { - "r": "101", - "s": [ - { - "value": [ - "return " - ] - }, - { - "r": "100", - "s": [ - { - "value": [ - "\"Procedure, Order\"", - " { " - ] - }, - { - "s": [ - { - "value": [ - "authorDatetime", - ": " - ] - }, - { - "r": "99", - "s": [ - { - "r": "98", - "s": [ - { - "value": [ - "MedicationsOrdered" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "99", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - " }" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t)" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "103", - "type": "Union", - "operand": [ - { - "localId": "91", - "type": "Union", - "operand": [ - { - "localId": "78", - "type": "Query", - "source": [ - { - "localId": "77", - "alias": "ProcedureOrdered", - "expression": { - "localId": "76", - "name": "Procedures Ordered", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ] - }, - { - "localId": "90", - "type": "Query", - "source": [ - { - "localId": "84", - "alias": "ProceduresPerformed", - "expression": { - "localId": "83", - "name": "Procedures Performed", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ], - "return": { - "localId": "89", - "expression": { - "localId": "88", - "classType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedureOrder", - "type": "Instance", - "element": [ - { - "name": "authorDatetime", - "value": { - "localId": "87", - "type": "Start", - "operand": { - "localId": "86", - "path": "relevantPeriod", - "scope": "ProceduresPerformed", - "type": "Property" - } - } - } - ] - } - } - } - ] - }, - { - "localId": "102", - "type": "Query", - "source": [ - { - "localId": "97", - "alias": "MedicationsOrdered", - "expression": { - "localId": "96", - "name": "Medications Ordered", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ], - "return": { - "localId": "101", - "expression": { - "localId": "100", - "classType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedureOrder", - "type": "Instance", - "element": [ - { - "name": "authorDatetime", - "value": { - "localId": "99", - "path": "authorDatetime", - "scope": "MedicationsOrdered", - "type": "Property" - } - } - ] - } - } - } - ] - } - }, - { - "localId": "116", - "name": "Index Outpatient Encounter Before Treatment or Psychotherapy", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "116", - "s": [ - { - "value": [ - "define ", - "\"Index Outpatient Encounter Before Treatment or Psychotherapy\"", - ":\r\n\t" - ] - }, - { - "r": "115", - "s": [ - { - "r": "69", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "69", - "s": [ - { - "s": [ - { - "r": "58", - "s": [ - { - "r": "57", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Encounter\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t" - ] - }, - { - "r": "68", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "60", - "s": [ - { - "r": "59", - "s": [ - { - "r": "59", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Outpatient Psychotherapy\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Psychotherapy" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\tsuch that " - ] - }, - { - "r": "67", - "s": [ - { - "r": "62", - "s": [ - { - "r": "61", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "62", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "67", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "66", - "s": [ - { - "value": [ - "42 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less before" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "65", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "64", - "s": [ - { - "r": "63", - "s": [ - { - "value": [ - "Psychotherapy" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "64", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "114", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "114", - "s": [ - { - "s": [ - { - "r": "71", - "s": [ - { - "r": "70", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Encounter\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "113", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "106", - "s": [ - { - "r": "105", - "s": [ - { - "s": [ - { - "value": [ - "\"Treatments\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Treatment" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\tsuch that " - ] - }, - { - "r": "112", - "s": [ - { - "r": "108", - "s": [ - { - "r": "107", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "108", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "112", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "111", - "s": [ - { - "value": [ - "42 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less before" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "110", - "s": [ - { - "r": "109", - "s": [ - { - "value": [ - "Treatment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "110", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "115", - "type": "Union", - "operand": [ - { - "localId": "69", - "type": "Query", - "source": [ - { - "localId": "58", - "alias": "Encounter", - "expression": { - "localId": "57", - "name": "Index Behavioral Health Outpatient Encounter", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "68", - "alias": "Psychotherapy", - "type": "With", - "expression": { - "localId": "59", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Outpatient Psychotherapy", - "type": "ValueSetRef" - } - }, - "suchThat": { - "localId": "67", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "62", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "lowClosed": true, - "highClosed": false, - "type": "Interval", - "low": { - "type": "Subtract", - "operand": [ - { - "localId": "65", - "type": "Start", - "operand": { - "localId": "64", - "path": "relevantPeriod", - "scope": "Psychotherapy", - "type": "Property" - } - }, - { - "localId": "66", - "value": 42, - "unit": "days", - "type": "Quantity" - } - ] - }, - "high": { - "localId": "65", - "type": "Start", - "operand": { - "localId": "64", - "path": "relevantPeriod", - "scope": "Psychotherapy", - "type": "Property" - } - } - } - ] - } - } - ] - }, - { - "localId": "114", - "type": "Query", - "source": [ - { - "localId": "71", - "alias": "Encounter", - "expression": { - "localId": "70", - "name": "Index Behavioral Health Outpatient Encounter", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "113", - "alias": "Treatment", - "type": "With", - "expression": { - "localId": "105", - "name": "Treatments", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "112", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "108", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "lowClosed": true, - "highClosed": false, - "type": "Interval", - "low": { - "type": "Subtract", - "operand": [ - { - "localId": "110", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - }, - { - "localId": "111", - "value": 42, - "unit": "days", - "type": "Quantity" - } - ] - }, - "high": { - "localId": "110", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - } - } - ] - } - } - ] - } - ] - } - }, - { - "localId": "125", - "name": "Medications Active", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "125", - "s": [ - { - "value": [ - "define ", - "\"Medications Active\"", - ":\r\n\t" - ] - }, - { - "r": "124", - "s": [ - { - "r": "122", - "s": [ - { - "value": [ - "[", - "\"Medication, Active\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Antidepressant Medication\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "123", - "s": [ - { - "value": [ - "[", - "\"Medication, Active\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Mood Stabilizer Medication\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "124", - "type": "Union", - "operand": [ - { - "localId": "122", - "dataType": "{urn:healthit-gov:qdm:v5_3}MedicationActive", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Antidepressant Medication", - "type": "ValueSetRef" - } - }, - { - "localId": "123", - "dataType": "{urn:healthit-gov:qdm:v5_3}MedicationActive", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Mood Stabilizer Medication", - "type": "ValueSetRef" - } - } - ] - } - }, - { - "localId": "137", - "name": "Medication Active Or Diagnoses", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "137", - "s": [ - { - "value": [ - "define ", - "\"Medication Active Or Diagnoses\"", - ":\r\n\t" - ] - }, - { - "r": "136", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "136", - "s": [ - { - "r": "128", - "s": [ - { - "s": [ - { - "r": "127", - "s": [ - { - "r": "126", - "s": [ - { - "s": [ - { - "value": [ - "\"Medications Active\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "MedicationActive" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tunion " - ] - }, - { - "r": "135", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "135", - "s": [ - { - "s": [ - { - "r": "130", - "s": [ - { - "r": "129", - "s": [ - { - "s": [ - { - "value": [ - "\"Bipolar Disorder Or Unipolar Depression\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Diagnoses" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\t" - ] - }, - { - "r": "134", - "s": [ - { - "value": [ - "return " - ] - }, - { - "r": "133", - "s": [ - { - "value": [ - "\"Medication, Active\"", - " { " - ] - }, - { - "s": [ - { - "value": [ - "relevantPeriod", - ": " - ] - }, - { - "r": "132", - "s": [ - { - "r": "131", - "s": [ - { - "value": [ - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "132", - "s": [ - { - "value": [ - "prevalencePeriod" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - " }" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t)" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "136", - "type": "Union", - "operand": [ - { - "localId": "128", - "type": "Query", - "source": [ - { - "localId": "127", - "alias": "MedicationActive", - "expression": { - "localId": "126", - "name": "Medications Active", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ] - }, - { - "localId": "135", - "type": "Query", - "source": [ - { - "localId": "130", - "alias": "Diagnoses", - "expression": { - "localId": "129", - "name": "Bipolar Disorder Or Unipolar Depression", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ], - "return": { - "localId": "134", - "expression": { - "localId": "133", - "classType": "{urn:healthit-gov:qdm:v5_3}MedicationActive", - "type": "Instance", - "element": [ - { - "name": "relevantPeriod", - "value": { - "localId": "132", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - } - } - ] - } - } - } - ] - } - }, - { - "localId": "147", - "name": "Outpatient Encounter During Diagnosis or Medication Active", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "147", - "s": [ - { - "value": [ - "define ", - "\"Outpatient Encounter During Diagnosis or Medication Active\"", - ":\r\n\t" - ] - }, - { - "r": "146", - "s": [ - { - "s": [ - { - "r": "121", - "s": [ - { - "r": "120", - "s": [ - { - "r": "120", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Outpatient encounter\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "OutpatientEncounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "145", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "139", - "s": [ - { - "r": "138", - "s": [ - { - "s": [ - { - "value": [ - "\"Medication Active Or Diagnoses\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "MedicationDiagnosis" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tsuch that " - ] - }, - { - "r": "144", - "s": [ - { - "r": "141", - "s": [ - { - "r": "140", - "s": [ - { - "value": [ - "OutpatientEncounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "141", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "during", - " " - ] - }, - { - "r": "143", - "s": [ - { - "r": "142", - "s": [ - { - "value": [ - "MedicationDiagnosis" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "143", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "146", - "type": "Query", - "source": [ - { - "localId": "121", - "alias": "OutpatientEncounter", - "expression": { - "localId": "120", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Outpatient encounter", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - { - "localId": "145", - "alias": "MedicationDiagnosis", - "type": "With", - "expression": { - "localId": "138", - "name": "Medication Active Or Diagnoses", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "144", - "type": "IncludedIn", - "operand": [ - { - "localId": "141", - "path": "relevantPeriod", - "scope": "OutpatientEncounter", - "type": "Property" - }, - { - "localId": "143", - "path": "relevantPeriod", - "scope": "MedicationDiagnosis", - "type": "Property" - } - ] - } - } - ] - } - }, - { - "localId": "160", - "name": "Outpatient Psychotherapy During Diagnoses", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "160", - "s": [ - { - "value": [ - "define ", - "\"Outpatient Psychotherapy During Diagnoses\"", - ":\r\n\t" - ] - }, - { - "r": "159", - "s": [ - { - "s": [ - { - "r": "150", - "s": [ - { - "r": "149", - "s": [ - { - "r": "149", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Outpatient Psychotherapy\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "OutpatientPsychotherapy" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "158", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "152", - "s": [ - { - "r": "151", - "s": [ - { - "s": [ - { - "value": [ - "\"Bipolar Disorder Or Unipolar Depression\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tsuch that " - ] - }, - { - "r": "157", - "s": [ - { - "r": "154", - "s": [ - { - "r": "153", - "s": [ - { - "value": [ - "OutpatientPsychotherapy" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "154", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "during", - " " - ] - }, - { - "r": "156", - "s": [ - { - "r": "155", - "s": [ - { - "value": [ - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "156", - "s": [ - { - "value": [ - "prevalencePeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "159", - "type": "Query", - "source": [ - { - "localId": "150", - "alias": "OutpatientPsychotherapy", - "expression": { - "localId": "149", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Outpatient Psychotherapy", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - { - "localId": "158", - "alias": "Diagnoses", - "type": "With", - "expression": { - "localId": "151", - "name": "Bipolar Disorder Or Unipolar Depression", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "157", - "type": "IncludedIn", - "operand": [ - { - "localId": "154", - "path": "relevantPeriod", - "scope": "OutpatientPsychotherapy", - "type": "Property" - }, - { - "localId": "156", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - } - ] - } - } - ] - } - }, - { - "localId": "188", - "name": "Diagnoses Start During Encounters", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "188", - "s": [ - { - "value": [ - "define ", - "\"Diagnoses Start During Encounters\"", - ":\r\n\t" - ] - }, - { - "r": "187", - "s": [ - { - "s": [ - { - "r": "176", - "s": [ - { - "r": "175", - "s": [ - { - "s": [ - { - "value": [ - "\"Bipolar Disorder Or Unipolar Depression\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Diagnoses" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "186", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "180", - "s": [ - { - "r": "179", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "179", - "s": [ - { - "r": "177", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Outpatient encounter\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tunion " - ] - }, - { - "r": "178", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Outpatient Psychotherapy\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - }, - { - "value": [ - " ", - "Encounters" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tsuch that " - ] - }, - { - "r": "185", - "s": [ - { - "r": "182", - "s": [ - { - "r": "181", - "s": [ - { - "value": [ - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "182", - "s": [ - { - "value": [ - "prevalencePeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "starts during", - " " - ] - }, - { - "r": "184", - "s": [ - { - "r": "183", - "s": [ - { - "value": [ - "Encounters" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "184", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "187", - "type": "Query", - "source": [ - { - "localId": "176", - "alias": "Diagnoses", - "expression": { - "localId": "175", - "name": "Bipolar Disorder Or Unipolar Depression", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "186", - "alias": "Encounters", - "type": "With", - "expression": { - "localId": "179", - "type": "Union", - "operand": [ - { - "localId": "177", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Outpatient encounter", - "type": "ValueSetRef" - } - }, - { - "localId": "178", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Outpatient Psychotherapy", - "type": "ValueSetRef" - } - } - ] - }, - "suchThat": { - "localId": "185", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "182", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - } - }, - { - "localId": "184", - "path": "relevantPeriod", - "scope": "Encounters", - "type": "Property" - } - ] - } - } - ] - } - }, - { - "localId": "213", - "name": "Outpatient Encounter 180 days after Encounter Diagnosis Treatment", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "213", - "s": [ - { - "value": [ - "define ", - "\"Outpatient Encounter 180 days after Encounter Diagnosis Treatment\"", - ":\r\n\t" - ] - }, - { - "r": "212", - "s": [ - { - "r": "199", - "s": [ - { - "r": "172", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "172", - "s": [ - { - "s": [ - { - "r": "119", - "s": [ - { - "r": "118", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Encounter\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t" - ] - }, - { - "r": "171", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "163", - "s": [ - { - "r": "162", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "162", - "s": [ - { - "r": "148", - "s": [ - { - "value": [ - "\"Outpatient Encounter During Diagnosis or Medication Active\"" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\tunion " - ] - }, - { - "r": "161", - "s": [ - { - "value": [ - "\"Outpatient Psychotherapy During Diagnoses\"" - ] - } - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - }, - { - "value": [ - " ", - "PriorEncounter" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\tsuch that " - ] - }, - { - "r": "170", - "s": [ - { - "r": "165", - "s": [ - { - "r": "164", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "165", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "170", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "169", - "s": [ - { - "value": [ - "180 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less after" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "168", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "167", - "s": [ - { - "r": "166", - "s": [ - { - "value": [ - "PriorEncounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "167", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "198", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "198", - "s": [ - { - "s": [ - { - "r": "174", - "s": [ - { - "r": "173", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Encounter\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "197", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "190", - "s": [ - { - "r": "189", - "s": [ - { - "s": [ - { - "value": [ - "\"Diagnoses Start During Encounters\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\tsuch that " - ] - }, - { - "r": "196", - "s": [ - { - "r": "192", - "s": [ - { - "r": "191", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "192", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "196", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "195", - "s": [ - { - "value": [ - "180 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less after" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "194", - "s": [ - { - "r": "193", - "s": [ - { - "value": [ - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "194", - "s": [ - { - "value": [ - "prevalencePeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "211", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "211", - "s": [ - { - "s": [ - { - "r": "201", - "s": [ - { - "r": "200", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Encounter\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "210", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "203", - "s": [ - { - "r": "202", - "s": [ - { - "s": [ - { - "value": [ - "\"Treatments\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Treatment" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\tsuch that " - ] - }, - { - "r": "209", - "s": [ - { - "r": "205", - "s": [ - { - "r": "204", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "205", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "209", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "208", - "s": [ - { - "value": [ - "180 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less after" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "207", - "s": [ - { - "r": "206", - "s": [ - { - "value": [ - "Treatment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "207", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "212", - "type": "Union", - "operand": [ - { - "localId": "199", - "type": "Union", - "operand": [ - { - "localId": "172", - "type": "Query", - "source": [ - { - "localId": "119", - "alias": "Encounter", - "expression": { - "localId": "118", - "name": "Index Behavioral Health Outpatient Encounter", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "171", - "alias": "PriorEncounter", - "type": "With", - "expression": { - "localId": "162", - "type": "Union", - "operand": [ - { - "localId": "148", - "name": "Outpatient Encounter During Diagnosis or Medication Active", - "type": "ExpressionRef" - }, - { - "localId": "161", - "name": "Outpatient Psychotherapy During Diagnoses", - "type": "ExpressionRef" - } - ] - }, - "suchThat": { - "localId": "170", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "165", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "lowClosed": false, - "highClosed": true, - "type": "Interval", - "low": { - "localId": "168", - "type": "Start", - "operand": { - "localId": "167", - "path": "relevantPeriod", - "scope": "PriorEncounter", - "type": "Property" - } - }, - "high": { - "type": "Add", - "operand": [ - { - "localId": "168", - "type": "Start", - "operand": { - "localId": "167", - "path": "relevantPeriod", - "scope": "PriorEncounter", - "type": "Property" - } - }, - { - "localId": "169", - "value": 180, - "unit": "days", - "type": "Quantity" - } - ] - } - } - ] - } - } - ] - }, - { - "localId": "198", - "type": "Query", - "source": [ - { - "localId": "174", - "alias": "Encounter", - "expression": { - "localId": "173", - "name": "Index Behavioral Health Outpatient Encounter", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "197", - "alias": "Diagnoses", - "type": "With", - "expression": { - "localId": "189", - "name": "Diagnoses Start During Encounters", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "196", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "192", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "lowClosed": false, - "highClosed": true, - "type": "Interval", - "low": { - "type": "End", - "operand": { - "localId": "194", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - } - }, - "high": { - "type": "Add", - "operand": [ - { - "type": "End", - "operand": { - "localId": "194", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - } - }, - { - "localId": "195", - "value": 180, - "unit": "days", - "type": "Quantity" - } - ] - } - } - ] - } - } - ] - } - ] - }, - { - "localId": "211", - "type": "Query", - "source": [ - { - "localId": "201", - "alias": "Encounter", - "expression": { - "localId": "200", - "name": "Index Behavioral Health Outpatient Encounter", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "210", - "alias": "Treatment", - "type": "With", - "expression": { - "localId": "202", - "name": "Treatments", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "209", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "205", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "lowClosed": false, - "highClosed": true, - "type": "Interval", - "low": { - "localId": "207", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - }, - "high": { - "type": "Add", - "operand": [ - { - "localId": "207", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - }, - { - "localId": "208", - "value": 180, - "unit": "days", - "type": "Quantity" - } - ] - } - } - ] - } - } - ] - } - ] - } - }, - { - "localId": "237", - "name": "Index Behavioral Health Outpatient Psychotherapy", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "237", - "s": [ - { - "value": [ - "define ", - "\"Index Behavioral Health Outpatient Psychotherapy\"", - ":\r\n\t" - ] - }, - { - "r": "236", - "s": [ - { - "s": [ - { - "r": "217", - "s": [ - { - "r": "216", - "s": [ - { - "r": "216", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Outpatient Psychotherapy\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "225", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "219", - "s": [ - { - "r": "218", - "s": [ - { - "s": [ - { - "value": [ - "\"Bipolar Disorder Or Unipolar Depression\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tsuch that " - ] - }, - { - "r": "224", - "s": [ - { - "r": "221", - "s": [ - { - "r": "220", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "221", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "overlaps before", - " " - ] - }, - { - "r": "223", - "s": [ - { - "r": "222", - "s": [ - { - "value": [ - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "223", - "s": [ - { - "value": [ - "prevalencePeriod" - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "235", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "235", - "s": [ - { - "r": "227", - "s": [ - { - "r": "226", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "227", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "starts during", - " " - ] - }, - { - "r": "234", - "s": [ - { - "value": [ - "Interval[" - ] - }, - { - "r": "229", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "228", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - }, - { - "value": [ - ", " - ] - }, - { - "r": "233", - "s": [ - { - "r": "231", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "230", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - }, - { - "value": [ - " + " - ] - }, - { - "r": "232", - "s": [ - { - "value": [ - "323 ", - "days" - ] - } - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "236", - "type": "Query", - "source": [ - { - "localId": "217", - "alias": "Encounter", - "expression": { - "localId": "216", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Outpatient Psychotherapy", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - { - "localId": "225", - "alias": "Diagnoses", - "type": "With", - "expression": { - "localId": "218", - "name": "Bipolar Disorder Or Unipolar Depression", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "224", - "type": "OverlapsBefore", - "operand": [ - { - "localId": "221", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - }, - { - "localId": "223", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - } - ] - } - } - ], - "where": { - "localId": "235", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "227", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "localId": "234", - "lowClosed": true, - "highClosed": true, - "type": "Interval", - "low": { - "localId": "229", - "type": "Start", - "operand": { - "localId": "228", - "name": "Measurement Period", - "type": "ParameterRef" - } - }, - "high": { - "localId": "233", - "type": "Add", - "operand": [ - { - "localId": "231", - "type": "Start", - "operand": { - "localId": "230", - "name": "Measurement Period", - "type": "ParameterRef" - } - }, - { - "localId": "232", - "value": 323, - "unit": "days", - "type": "Quantity" - } - ] - } - } - ] - } - } - }, - { - "localId": "264", - "name": "Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "264", - "s": [ - { - "value": [ - "define ", - "\"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"", - ":\r\n\t" - ] - }, - { - "r": "263", - "s": [ - { - "r": "250", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "250", - "s": [ - { - "s": [ - { - "r": "239", - "s": [ - { - "r": "238", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Psychotherapy\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t" - ] - }, - { - "r": "249", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "241", - "s": [ - { - "r": "240", - "s": [ - { - "r": "240", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Outpatient Psychotherapy\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "OutpatientPsychotherapy" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\tsuch that " - ] - }, - { - "r": "248", - "s": [ - { - "r": "243", - "s": [ - { - "r": "242", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "243", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "248", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "247", - "s": [ - { - "value": [ - "42 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less before" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "246", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "245", - "s": [ - { - "r": "244", - "s": [ - { - "value": [ - "OutpatientPsychotherapy" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "245", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "262", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "262", - "s": [ - { - "s": [ - { - "r": "252", - "s": [ - { - "r": "251", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Psychotherapy\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "IndexOutpatientPsychotherapyEncounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "261", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "254", - "s": [ - { - "r": "253", - "s": [ - { - "s": [ - { - "value": [ - "\"Treatments\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Treatment" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\tsuch that " - ] - }, - { - "r": "260", - "s": [ - { - "r": "256", - "s": [ - { - "r": "255", - "s": [ - { - "value": [ - "IndexOutpatientPsychotherapyEncounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "256", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "260", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "259", - "s": [ - { - "value": [ - "42 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less before" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "258", - "s": [ - { - "r": "257", - "s": [ - { - "value": [ - "Treatment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "258", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "263", - "type": "Union", - "operand": [ - { - "localId": "250", - "type": "Query", - "source": [ - { - "localId": "239", - "alias": "Encounter", - "expression": { - "localId": "238", - "name": "Index Behavioral Health Outpatient Psychotherapy", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "249", - "alias": "OutpatientPsychotherapy", - "type": "With", - "expression": { - "localId": "240", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Outpatient Psychotherapy", - "type": "ValueSetRef" - } - }, - "suchThat": { - "localId": "248", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "243", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "lowClosed": true, - "highClosed": false, - "type": "Interval", - "low": { - "type": "Subtract", - "operand": [ - { - "localId": "246", - "type": "Start", - "operand": { - "localId": "245", - "path": "relevantPeriod", - "scope": "OutpatientPsychotherapy", - "type": "Property" - } - }, - { - "localId": "247", - "value": 42, - "unit": "days", - "type": "Quantity" - } - ] - }, - "high": { - "localId": "246", - "type": "Start", - "operand": { - "localId": "245", - "path": "relevantPeriod", - "scope": "OutpatientPsychotherapy", - "type": "Property" - } - } - } - ] - } - } - ] - }, - { - "localId": "262", - "type": "Query", - "source": [ - { - "localId": "252", - "alias": "IndexOutpatientPsychotherapyEncounter", - "expression": { - "localId": "251", - "name": "Index Behavioral Health Outpatient Psychotherapy", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "261", - "alias": "Treatment", - "type": "With", - "expression": { - "localId": "253", - "name": "Treatments", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "260", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "256", - "path": "relevantPeriod", - "scope": "IndexOutpatientPsychotherapyEncounter", - "type": "Property" - } - }, - { - "lowClosed": true, - "highClosed": false, - "type": "Interval", - "low": { - "type": "Subtract", - "operand": [ - { - "localId": "258", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - }, - { - "localId": "259", - "value": 42, - "unit": "days", - "type": "Quantity" - } - ] - }, - "high": { - "localId": "258", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - } - } - ] - } - } - ] - } - ] - } - }, - { - "localId": "307", - "name": "Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "307", - "s": [ - { - "value": [ - "define ", - "\"Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment\"", - ":\r\n\t" - ] - }, - { - "r": "306", - "s": [ - { - "r": "293", - "s": [ - { - "r": "280", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "280", - "s": [ - { - "s": [ - { - "r": "267", - "s": [ - { - "r": "266", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t" - ] - }, - { - "r": "279", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "271", - "s": [ - { - "r": "270", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "270", - "s": [ - { - "r": "268", - "s": [ - { - "value": [ - "\"Outpatient Encounter During Diagnosis or Medication Active\"" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\tunion " - ] - }, - { - "r": "269", - "s": [ - { - "value": [ - "\"Outpatient Psychotherapy During Diagnoses\"" - ] - } - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - }, - { - "value": [ - " ", - "PriorEncounter" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\tsuch that " - ] - }, - { - "r": "278", - "s": [ - { - "r": "273", - "s": [ - { - "r": "272", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "273", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "278", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "277", - "s": [ - { - "value": [ - "180 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less after" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "276", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "275", - "s": [ - { - "r": "274", - "s": [ - { - "value": [ - "PriorEncounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "275", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "292", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "292", - "s": [ - { - "s": [ - { - "r": "282", - "s": [ - { - "r": "281", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "291", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "284", - "s": [ - { - "r": "283", - "s": [ - { - "s": [ - { - "value": [ - "\"Diagnoses Start During Encounters\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\tsuch that " - ] - }, - { - "r": "290", - "s": [ - { - "r": "286", - "s": [ - { - "r": "285", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "286", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "290", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "289", - "s": [ - { - "value": [ - "180 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less after" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "288", - "s": [ - { - "r": "287", - "s": [ - { - "value": [ - "Diagnoses" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "288", - "s": [ - { - "value": [ - "prevalencePeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "305", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "305", - "s": [ - { - "s": [ - { - "r": "295", - "s": [ - { - "r": "294", - "s": [ - { - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "304", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "297", - "s": [ - { - "r": "296", - "s": [ - { - "s": [ - { - "value": [ - "\"Treatments\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Treatment" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\tsuch that " - ] - }, - { - "r": "303", - "s": [ - { - "r": "299", - "s": [ - { - "r": "298", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "299", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "303", - "s": [ - { - "value": [ - "starts " - ] - }, - { - "r": "302", - "s": [ - { - "value": [ - "180 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less after" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "301", - "s": [ - { - "r": "300", - "s": [ - { - "value": [ - "Treatment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "301", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "306", - "type": "Union", - "operand": [ - { - "localId": "293", - "type": "Union", - "operand": [ - { - "localId": "280", - "type": "Query", - "source": [ - { - "localId": "267", - "alias": "Encounter", - "expression": { - "localId": "266", - "name": "Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "279", - "alias": "PriorEncounter", - "type": "With", - "expression": { - "localId": "270", - "type": "Union", - "operand": [ - { - "localId": "268", - "name": "Outpatient Encounter During Diagnosis or Medication Active", - "type": "ExpressionRef" - }, - { - "localId": "269", - "name": "Outpatient Psychotherapy During Diagnoses", - "type": "ExpressionRef" - } - ] - }, - "suchThat": { - "localId": "278", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "273", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "lowClosed": false, - "highClosed": true, - "type": "Interval", - "low": { - "localId": "276", - "type": "Start", - "operand": { - "localId": "275", - "path": "relevantPeriod", - "scope": "PriorEncounter", - "type": "Property" - } - }, - "high": { - "type": "Add", - "operand": [ - { - "localId": "276", - "type": "Start", - "operand": { - "localId": "275", - "path": "relevantPeriod", - "scope": "PriorEncounter", - "type": "Property" - } - }, - { - "localId": "277", - "value": 180, - "unit": "days", - "type": "Quantity" - } - ] - } - } - ] - } - } - ] - }, - { - "localId": "292", - "type": "Query", - "source": [ - { - "localId": "282", - "alias": "Encounter", - "expression": { - "localId": "281", - "name": "Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "291", - "alias": "Diagnoses", - "type": "With", - "expression": { - "localId": "283", - "name": "Diagnoses Start During Encounters", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "290", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "286", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "lowClosed": false, - "highClosed": true, - "type": "Interval", - "low": { - "type": "End", - "operand": { - "localId": "288", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - } - }, - "high": { - "type": "Add", - "operand": [ - { - "type": "End", - "operand": { - "localId": "288", - "path": "prevalencePeriod", - "scope": "Diagnoses", - "type": "Property" - } - }, - { - "localId": "289", - "value": 180, - "unit": "days", - "type": "Quantity" - } - ] - } - } - ] - } - } - ] - } - ] - }, - { - "localId": "305", - "type": "Query", - "source": [ - { - "localId": "295", - "alias": "Encounter", - "expression": { - "localId": "294", - "name": "Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - { - "localId": "304", - "alias": "Treatment", - "type": "With", - "expression": { - "localId": "296", - "name": "Treatments", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "303", - "type": "In", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "299", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - }, - { - "lowClosed": false, - "highClosed": true, - "type": "Interval", - "low": { - "localId": "301", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - }, - "high": { - "type": "Add", - "operand": [ - { - "localId": "301", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - }, - { - "localId": "302", - "value": 180, - "unit": "days", - "type": "Quantity" - } - ] - } - } - ] - } - } - ] - } - ] - } - }, - { - "localId": "311", - "name": "Qualifying.Encounters", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "311", - "s": [ - { - "value": [ - "define ", - "\"Qualifying.Encounters\"", - ":\r\n\t" - ] - }, - { - "r": "310", - "s": [ - { - "r": "215", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "215", - "s": [ - { - "r": "117", - "s": [ - { - "value": [ - "\"Index Outpatient Encounter Before Treatment or Psychotherapy\"" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\texcept " - ] - }, - { - "r": "214", - "s": [ - { - "value": [ - "\"Outpatient Encounter 180 days after Encounter Diagnosis Treatment\"" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "309", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "309", - "s": [ - { - "r": "265", - "s": [ - { - "value": [ - "\"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\texcept " - ] - }, - { - "r": "308", - "s": [ - { - "value": [ - "\"Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment\"" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "310", - "type": "Union", - "operand": [ - { - "localId": "215", - "type": "Except", - "operand": [ - { - "localId": "117", - "name": "Index Outpatient Encounter Before Treatment or Psychotherapy", - "type": "ExpressionRef" - }, - { - "localId": "214", - "name": "Outpatient Encounter 180 days after Encounter Diagnosis Treatment", - "type": "ExpressionRef" - } - ] - }, - { - "localId": "309", - "type": "Except", - "operand": [ - { - "localId": "265", - "name": "Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy", - "type": "ExpressionRef" - }, - { - "localId": "308", - "name": "Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment", - "type": "ExpressionRef" - } - ] - } - ] - } - }, - { - "localId": "315", - "name": "Initial Population", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "315", - "s": [ - { - "value": [ - "define ", - "\"Initial Population\"", - ":\r\n\t" - ] - }, - { - "r": "314", - "s": [ - { - "r": "34", - "s": [ - { - "r": "32", - "s": [ - { - "value": [ - "AgeInYearsAt", - "(" - ] - }, - { - "r": "31", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "30", - "s": [ - { - "value": [ - "\"Measurement Period\"" - ] - } - ] - } - ] - }, - { - "value": [ - ")" - ] - } - ] - }, - { - "value": [ - ">=", - " ", - "18" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tand " - ] - }, - { - "r": "313", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "312", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "312", - "s": [ - { - "value": [ - "\"Qualifying.Encounters\"" - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "314", - "type": "And", - "operand": [ - { - "localId": "34", - "type": "GreaterOrEqual", - "operand": [ - { - "localId": "32", - "precision": "Year", - "type": "CalculateAgeAt", - "operand": [ - { - "path": "birthDatetime", - "type": "Property", - "source": { - "name": "Patient", - "type": "ExpressionRef" - } - }, - { - "localId": "31", - "type": "Start", - "operand": { - "localId": "30", - "name": "Measurement Period", - "type": "ParameterRef" - } - } - ] - }, - { - "localId": "33", - "valueType": "{urn:hl7-org:elm-types:r1}Integer", - "value": "18", - "type": "Literal" - } - ] - }, - { - "localId": "313", - "type": "Exists", - "operand": { - "localId": "312", - "name": "Qualifying.Encounters", - "type": "ExpressionRef" - } - } - ] - } - }, - { - "localId": "317", - "name": "Denominator", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "317", - "s": [ - { - "value": [ - "define ", - "\"Denominator\"", - ":\r\n\t" - ] - }, - { - "r": "316", - "s": [ - { - "value": [ - "\"Initial Population\"" - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "316", - "name": "Initial Population", - "type": "ExpressionRef" - } - }, - { - "localId": "340", - "name": "Qualifying Treatments", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "340", - "s": [ - { - "value": [ - "define ", - "\"Qualifying Treatments\"", - ":\r\n\t" - ] - }, - { - "r": "339", - "s": [ - { - "s": [ - { - "r": "328", - "s": [ - { - "r": "327", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "327", - "s": [ - { - "r": "318", - "s": [ - { - "value": [ - "\"Treatments\"" - ] - } - ] - }, - { - "value": [ - "\r\n\t\tunion " - ] - }, - { - "r": "326", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "326", - "s": [ - { - "s": [ - { - "r": "320", - "s": [ - { - "r": "319", - "s": [ - { - "r": "319", - "s": [ - { - "value": [ - "[", - "\"Encounter, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Outpatient Psychotherapy\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Psychotherapy" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t" - ] - }, - { - "r": "325", - "s": [ - { - "value": [ - "return " - ] - }, - { - "r": "324", - "s": [ - { - "value": [ - "\"Procedure, Order\"", - " { " - ] - }, - { - "s": [ - { - "value": [ - "authorDatetime", - ": " - ] - }, - { - "r": "323", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "322", - "s": [ - { - "r": "321", - "s": [ - { - "value": [ - "Psychotherapy" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "322", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - " }" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t)" - ] - } - ] - } - ] - }, - { - "value": [ - " )" - ] - } - ] - }, - { - "value": [ - " ", - "InclusiveTreatments" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t" - ] - }, - { - "r": "338", - "s": [ - { - "value": [ - "with " - ] - }, - { - "r": "330", - "s": [ - { - "r": "329", - "s": [ - { - "s": [ - { - "value": [ - "\"Qualifying.Encounters\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounters" - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\tsuch that " - ] - }, - { - "r": "337", - "s": [ - { - "r": "332", - "s": [ - { - "r": "331", - "s": [ - { - "value": [ - "InclusiveTreatments" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "332", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "337", - "s": [ - { - "r": "336", - "s": [ - { - "value": [ - "42 ", - "days" - ] - } - ] - }, - { - "value": [ - " or less after" - ] - } - ] - }, - { - "value": [ - " " - ] - }, - { - "r": "335", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "334", - "s": [ - { - "r": "333", - "s": [ - { - "value": [ - "Encounters" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "334", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "339", - "type": "Query", - "source": [ - { - "localId": "328", - "alias": "InclusiveTreatments", - "expression": { - "localId": "327", - "type": "Union", - "operand": [ - { - "localId": "318", - "name": "Treatments", - "type": "ExpressionRef" - }, - { - "localId": "326", - "type": "Query", - "source": [ - { - "localId": "320", - "alias": "Psychotherapy", - "expression": { - "localId": "319", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed", - "templateId": "PositiveEncounterPerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Outpatient Psychotherapy", - "type": "ValueSetRef" - } - } - } - ], - "relationship": [ - - ], - "return": { - "localId": "325", - "expression": { - "localId": "324", - "classType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedureOrder", - "type": "Instance", - "element": [ - { - "name": "authorDatetime", - "value": { - "localId": "323", - "type": "Start", - "operand": { - "localId": "322", - "path": "relevantPeriod", - "scope": "Psychotherapy", - "type": "Property" - } - } - } - ] - } - } - } - ] - } - } - ], - "relationship": [ - { - "localId": "338", - "alias": "Encounters", - "type": "With", - "expression": { - "localId": "329", - "name": "Qualifying.Encounters", - "type": "ExpressionRef" - }, - "suchThat": { - "localId": "337", - "type": "In", - "operand": [ - { - "localId": "332", - "path": "authorDatetime", - "scope": "InclusiveTreatments", - "type": "Property" - }, - { - "lowClosed": false, - "highClosed": true, - "type": "Interval", - "low": { - "localId": "335", - "type": "Start", - "operand": { - "localId": "334", - "path": "relevantPeriod", - "scope": "Encounters", - "type": "Property" - } - }, - "high": { - "type": "Add", - "operand": [ - { - "localId": "335", - "type": "Start", - "operand": { - "localId": "334", - "path": "relevantPeriod", - "scope": "Encounters", - "type": "Property" - } - }, - { - "localId": "336", - "value": 42, - "unit": "days", - "type": "Quantity" - } - ] - } - } - ] - } - } - ] - } - }, - { - "localId": "379", - "name": "Numerator", - "context": "Patient", - "accessLevel": "Public", - "annotation": [ - { - "type": "Annotation", - "s": { - "r": "379", - "s": [ - { - "value": [ - "define ", - "\"Numerator\"", - ":\r\n\t" - ] - }, - { - "r": "378", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "377", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "377", - "s": [ - { - "s": [ - { - "value": [ - "from\r\n\t\t\t" - ] - }, - { - "r": "342", - "s": [ - { - "r": "341", - "s": [ - { - "r": "341", - "s": [ - { - "value": [ - "[", - "\"Procedure, Performed\"", - ": " - ] - }, - { - "s": [ - { - "value": [ - "\"BH Assessment for Alcohol or Other Drugs\"" - ] - } - ] - }, - { - "value": [ - "]" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Assessment" - ] - } - ] - }, - { - "value": [ - ",\r\n\t\t\t" - ] - }, - { - "r": "344", - "s": [ - { - "r": "343", - "s": [ - { - "s": [ - { - "value": [ - "\"Qualifying.Encounters\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Encounter" - ] - } - ] - }, - { - "value": [ - ",\r\n\t\t\t" - ] - }, - { - "r": "346", - "s": [ - { - "r": "345", - "s": [ - { - "s": [ - { - "value": [ - "\"Qualifying Treatments\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "Treatment" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t" - ] - }, - { - "r": "376", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "376", - "s": [ - { - "r": "358", - "s": [ - { - "r": "352", - "s": [ - { - "r": "348", - "s": [ - { - "r": "347", - "s": [ - { - "value": [ - "Assessment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "348", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "starts same or after", - " " - ] - }, - { - "r": "351", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "350", - "s": [ - { - "r": "349", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "350", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\tand " - ] - }, - { - "r": "357", - "s": [ - { - "r": "354", - "s": [ - { - "r": "353", - "s": [ - { - "value": [ - "Assessment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "354", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "ends same or before", - " " - ] - }, - { - "r": "356", - "s": [ - { - "r": "355", - "s": [ - { - "value": [ - "Treatment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "356", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\tand " - ] - }, - { - "r": "375", - "s": [ - { - "value": [ - "not " - ] - }, - { - "r": "374", - "s": [ - { - "value": [ - "exists " - ] - }, - { - "r": "373", - "s": [ - { - "value": [ - "( " - ] - }, - { - "r": "373", - "s": [ - { - "s": [ - { - "r": "360", - "s": [ - { - "r": "359", - "s": [ - { - "s": [ - { - "value": [ - "\"Qualifying Treatments\"" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "QualifiedTreatment" - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\t\t" - ] - }, - { - "r": "372", - "s": [ - { - "value": [ - "where " - ] - }, - { - "r": "372", - "s": [ - { - "r": "365", - "s": [ - { - "r": "362", - "s": [ - { - "r": "361", - "s": [ - { - "value": [ - "QualifiedTreatment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "362", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "before", - " " - ] - }, - { - "r": "364", - "s": [ - { - "r": "363", - "s": [ - { - "value": [ - "Treatment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "364", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t\t\t\tand " - ] - }, - { - "r": "371", - "s": [ - { - "r": "367", - "s": [ - { - "r": "366", - "s": [ - { - "value": [ - "QualifiedTreatment" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "367", - "s": [ - { - "value": [ - "authorDatetime" - ] - } - ] - } - ] - }, - { - "value": [ - " ", - "same or after", - " " - ] - }, - { - "r": "370", - "s": [ - { - "value": [ - "start of " - ] - }, - { - "r": "369", - "s": [ - { - "r": "368", - "s": [ - { - "value": [ - "Encounter" - ] - } - ] - }, - { - "value": [ - "." - ] - }, - { - "r": "369", - "s": [ - { - "value": [ - "relevantPeriod" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t\t\t\t)" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "value": [ - "\r\n\t)" - ] - } - ] - } - ] - } - ] - } - } - ], - "expression": { - "localId": "378", - "type": "Exists", - "operand": { - "localId": "377", - "type": "Query", - "source": [ - { - "localId": "342", - "alias": "Assessment", - "expression": { - "localId": "341", - "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveProcedurePerformed", - "templateId": "PositiveProcedurePerformed", - "codeProperty": "code", - "type": "Retrieve", - "codes": { - "name": "BH Assessment for Alcohol or Other Drugs", - "type": "ValueSetRef" - } - } - }, - { - "localId": "344", - "alias": "Encounter", - "expression": { - "localId": "343", - "name": "Qualifying.Encounters", - "type": "ExpressionRef" - } - }, - { - "localId": "346", - "alias": "Treatment", - "expression": { - "localId": "345", - "name": "Qualifying Treatments", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "376", - "type": "And", - "operand": [ - { - "localId": "358", - "type": "And", - "operand": [ - { - "localId": "352", - "type": "SameOrAfter", - "operand": [ - { - "type": "Start", - "operand": { - "localId": "348", - "path": "relevantPeriod", - "scope": "Assessment", - "type": "Property" - } - }, - { - "localId": "351", - "type": "Start", - "operand": { - "localId": "350", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - } - ] - }, - { - "localId": "357", - "type": "SameOrBefore", - "operand": [ - { - "type": "End", - "operand": { - "localId": "354", - "path": "relevantPeriod", - "scope": "Assessment", - "type": "Property" - } - }, - { - "localId": "356", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - } - ] - } - ] - }, - { - "localId": "375", - "type": "Not", - "operand": { - "localId": "374", - "type": "Exists", - "operand": { - "localId": "373", - "type": "Query", - "source": [ - { - "localId": "360", - "alias": "QualifiedTreatment", - "expression": { - "localId": "359", - "name": "Qualifying Treatments", - "type": "ExpressionRef" - } - } - ], - "relationship": [ - - ], - "where": { - "localId": "372", - "type": "And", - "operand": [ - { - "localId": "365", - "type": "Before", - "operand": [ - { - "localId": "362", - "path": "authorDatetime", - "scope": "QualifiedTreatment", - "type": "Property" - }, - { - "localId": "364", - "path": "authorDatetime", - "scope": "Treatment", - "type": "Property" - } - ] - }, - { - "localId": "371", - "type": "SameOrAfter", - "operand": [ - { - "localId": "367", - "path": "authorDatetime", - "scope": "QualifiedTreatment", - "type": "Property" - }, - { - "localId": "370", - "type": "Start", - "operand": { - "localId": "369", - "path": "relevantPeriod", - "scope": "Encounter", - "type": "Property" - } - } - ] - } - ] - } - } - } - } - ] - }, - "return": { - "distinct": true, - "expression": { - "type": "Tuple", - "element": [ - { - "name": "Assessment", - "value": { - "name": "Assessment", - "type": "AliasRef" - } - }, - { - "name": "Encounter", - "value": { - "name": "Encounter", - "type": "AliasRef" - } - }, - { - "name": "Treatment", - "value": { - "name": "Treatment", - "type": "AliasRef" - } - } - ] - } - } - } - } - } - ] - } - } - }, - "cql": "library Test169 version '0.0.040'\r\n\r\nusing QDM version '5.3'\r\n\r\nvalueset \"ONC Administrative Sex\": 'urn:oid:2.16.840.1.113762.1.4.1'\r\nvalueset \"Race\": 'urn:oid:2.16.840.1.114222.4.11.836'\r\nvalueset \"Ethnicity\": 'urn:oid:2.16.840.1.114222.4.11.837'\r\nvalueset \"Payer\": 'urn:oid:2.16.840.1.114222.4.11.3591'\r\nvalueset \"BH Antidepressant Medication\": 'urn:oid:2.16.840.1.113883.3.1257.1.972'\r\nvalueset \"BH Assessment for Alcohol or Other Drugs\": 'urn:oid:2.16.840.1.113883.3.1257.1.1604'\r\nvalueset \"BH Condition Involving Bipolar Disorder\": 'urn:oid:2.16.840.1.113883.3.1257.1.1504'\r\nvalueset \"BH Condition Involving Unipolar Depression\": 'urn:oid:2.16.840.1.113883.3.1257.1.1505'\r\nvalueset \"BH Counseling for Depression\": 'urn:oid:2.16.840.1.113883.3.1257.1.1616'\r\nvalueset \"BH Electroconvulsive Therapy\": 'urn:oid:2.16.840.1.113883.3.1257.1.1533'\r\nvalueset \"BH Mood Stabilizer Medication\": 'urn:oid:2.16.840.1.113883.3.1257.1.950'\r\nvalueset \"BH Outpatient encounter\": 'urn:oid:2.16.840.1.113883.3.464.1.49'\r\nvalueset \"BH Outpatient Psychotherapy\": 'urn:oid:2.16.840.1.113883.3.1257.1.973'\r\n\r\nparameter \"Measurement Period\" Interval\r\n\r\ncontext Patient\r\n\r\ndefine \"SDE Ethnicity\":\r\n\t[\"Patient Characteristic Ethnicity\": \"Ethnicity\"]\r\n\r\ndefine \"SDE Payer\":\r\n\t[\"Patient Characteristic Payer\": \"Payer\"]\r\n\r\ndefine \"SDE Race\":\r\n\t[\"Patient Characteristic Race\": \"Race\"]\r\n\r\ndefine \"SDE Sex\":\r\n\t[\"Patient Characteristic Sex\": \"ONC Administrative Sex\"]\r\n\r\ndefine \"Bipolar Disorder Or Unipolar Depression\":\r\n\t[\"Diagnosis\": \"BH Condition Involving Bipolar Disorder\"]\r\n\t\tunion [\"Diagnosis\": \"BH Condition Involving Unipolar Depression\"]\r\n\r\ndefine \"Denominator\":\r\n\t\"Initial Population\"\r\n\r\ndefine \"Diagnoses Start During Encounters\":\r\n\t\"Bipolar Disorder Or Unipolar Depression\" Diagnoses\r\n\t\twith ( [\"Encounter, Performed\": \"BH Outpatient encounter\"]\r\n\t\t\tunion [\"Encounter, Performed\": \"BH Outpatient Psychotherapy\"] ) Encounters\r\n\t\t\tsuch that Diagnoses.prevalencePeriod starts during Encounters.relevantPeriod\r\n\r\ndefine \"Index Behavioral Health Outpatient Encounter\":\r\n\t[\"Encounter, Performed\": \"BH Outpatient encounter\"] Encounter\r\n\t\twith \"Bipolar Disorder Or Unipolar Depression\" Diagnoses\r\n\t\t\tsuch that Encounter.relevantPeriod overlaps before Diagnoses.prevalencePeriod\r\n\t\twhere Encounter.relevantPeriod starts during Interval[start of \"Measurement Period\", start of \"Measurement Period\" + 323 days]\r\n\r\ndefine \"Index Behavioral Health Outpatient Psychotherapy\":\r\n\t[\"Encounter, Performed\": \"BH Outpatient Psychotherapy\"] Encounter\r\n\t\twith \"Bipolar Disorder Or Unipolar Depression\" Diagnoses\r\n\t\t\tsuch that Encounter.relevantPeriod overlaps before Diagnoses.prevalencePeriod\r\n\t\twhere Encounter.relevantPeriod starts during Interval[start of \"Measurement Period\", start of \"Measurement Period\" + 323 days]\r\n\r\ndefine \"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\":\r\n\t( \"Index Behavioral Health Outpatient Psychotherapy\" Encounter\r\n\t\t\twith [\"Encounter, Performed\": \"BH Outpatient Psychotherapy\"] OutpatientPsychotherapy\r\n\t\t\t\tsuch that Encounter.relevantPeriod starts 42 days or less before start of OutpatientPsychotherapy.relevantPeriod\r\n\t)\r\n\t\tunion ( \"Index Behavioral Health Outpatient Psychotherapy\" IndexOutpatientPsychotherapyEncounter\r\n\t\t\t\twith \"Treatments\" Treatment\r\n\t\t\t\t\tsuch that IndexOutpatientPsychotherapyEncounter.relevantPeriod starts 42 days or less before Treatment.authorDatetime\r\n\t\t)\r\n\r\ndefine \"Index Outpatient Encounter Before Treatment or Psychotherapy\":\r\n\t( \"Index Behavioral Health Outpatient Encounter\" Encounter\r\n\t\t\twith [\"Encounter, Performed\": \"BH Outpatient Psychotherapy\"] Psychotherapy\r\n\t\t\t\tsuch that Encounter.relevantPeriod starts 42 days or less before start of Psychotherapy.relevantPeriod\r\n\t)\r\n\t\tunion ( \"Index Behavioral Health Outpatient Encounter\" Encounter\r\n\t\t\t\twith \"Treatments\" Treatment\r\n\t\t\t\t\tsuch that Encounter.relevantPeriod starts 42 days or less before Treatment.authorDatetime\r\n\t\t)\r\n\r\ndefine \"Medications Active\":\r\n\t[\"Medication, Active\": \"BH Antidepressant Medication\"]\r\n\t\tunion [\"Medication, Active\": \"BH Mood Stabilizer Medication\"]\r\n\r\ndefine \"Medications Ordered\":\r\n\t[\"Medication, Order\": \"BH Antidepressant Medication\"]\r\n\t\tunion [\"Medication, Order\": \"BH Mood Stabilizer Medication\"]\r\n\r\ndefine \"Outpatient Encounter 180 days after Encounter Diagnosis Treatment\":\r\n\t( \"Index Behavioral Health Outpatient Encounter\" Encounter\r\n\t\t\twith ( \"Outpatient Encounter During Diagnosis or Medication Active\"\r\n\t\t\t\tunion \"Outpatient Psychotherapy During Diagnoses\" ) PriorEncounter\r\n\t\t\t\tsuch that Encounter.relevantPeriod starts 180 days or less after start of PriorEncounter.relevantPeriod\r\n\t)\r\n\t\tunion ( \"Index Behavioral Health Outpatient Encounter\" Encounter\r\n\t\t\t\twith \"Diagnoses Start During Encounters\" Diagnoses\r\n\t\t\t\t\tsuch that Encounter.relevantPeriod starts 180 days or less after Diagnoses.prevalencePeriod\r\n\t\t)\r\n\t\tunion ( \"Index Behavioral Health Outpatient Encounter\" Encounter\r\n\t\t\t\twith \"Treatments\" Treatment\r\n\t\t\t\t\tsuch that Encounter.relevantPeriod starts 180 days or less after Treatment.authorDatetime\r\n\t\t)\r\n\r\ndefine \"Outpatient Encounter During Diagnosis or Medication Active\":\r\n\t[\"Encounter, Performed\": \"BH Outpatient encounter\"] OutpatientEncounter\r\n\t\twith \"Medication Active Or Diagnoses\" MedicationDiagnosis\r\n\t\t\tsuch that OutpatientEncounter.relevantPeriod during MedicationDiagnosis.relevantPeriod\r\n\r\ndefine \"Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment\":\r\n\t( \"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\" Encounter\r\n\t\t\twith ( \"Outpatient Encounter During Diagnosis or Medication Active\"\r\n\t\t\t\tunion \"Outpatient Psychotherapy During Diagnoses\" ) PriorEncounter\r\n\t\t\t\tsuch that Encounter.relevantPeriod starts 180 days or less after start of PriorEncounter.relevantPeriod\r\n\t)\r\n\t\tunion ( \"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\" Encounter\r\n\t\t\t\twith \"Diagnoses Start During Encounters\" Diagnoses\r\n\t\t\t\t\tsuch that Encounter.relevantPeriod starts 180 days or less after Diagnoses.prevalencePeriod\r\n\t\t)\r\n\t\tunion ( \"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\" Encounter\r\n\t\t\t\twith \"Treatments\" Treatment\r\n\t\t\t\t\tsuch that Encounter.relevantPeriod starts 180 days or less after Treatment.authorDatetime\r\n\t\t)\r\n\r\ndefine \"Outpatient Psychotherapy During Diagnoses\":\r\n\t[\"Encounter, Performed\": \"BH Outpatient Psychotherapy\"] OutpatientPsychotherapy\r\n\t\twith \"Bipolar Disorder Or Unipolar Depression\" Diagnoses\r\n\t\t\tsuch that OutpatientPsychotherapy.relevantPeriod during Diagnoses.prevalencePeriod\r\n\r\ndefine \"Procedures Ordered\":\r\n\t[\"Procedure, Order\": \"BH Electroconvulsive Therapy\"]\r\n\t\tunion [\"Procedure, Order\": \"BH Counseling for Depression\"]\r\n\r\ndefine \"Procedures Performed\":\r\n\t[\"Procedure, Performed\": \"BH Electroconvulsive Therapy\"]\r\n\t\tunion [\"Procedure, Performed\": \"BH Counseling for Depression\"]\r\n\r\ndefine \"Treatments\":\r\n\t( \"Procedures Ordered\" ProcedureOrdered\r\n\t\t\tunion ( \"Procedures Performed\" ProceduresPerformed\r\n\t\t\t\t\treturn \"Procedure, Order\" { authorDatetime: start of ProceduresPerformed.relevantPeriod }\r\n\t\t\t)\r\n\t\t\tunion ( \"Medications Ordered\" MedicationsOrdered\r\n\t\t\t\t\treturn \"Procedure, Order\" { authorDatetime: MedicationsOrdered.authorDatetime }\r\n\t\t\t)\r\n\t)\r\n\r\ndefine \"Qualifying.Encounters\":\r\n\t( \"Index Outpatient Encounter Before Treatment or Psychotherapy\"\r\n\t\t\texcept \"Outpatient Encounter 180 days after Encounter Diagnosis Treatment\"\r\n\t)\r\n\t\tunion ( \"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"\r\n\t\t\t\texcept \"Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment\"\r\n\t\t)\r\n\r\ndefine \"Initial Population\":\r\n\tAgeInYearsAt(start of \"Measurement Period\")>= 18\r\n\t\tand exists ( \"Qualifying.Encounters\" )\r\n\r\ndefine \"Qualifying Treatments\":\r\n\t( \"Treatments\"\r\n\t\tunion ( [\"Encounter, Performed\": \"BH Outpatient Psychotherapy\"] Psychotherapy\r\n\t\t\t\treturn \"Procedure, Order\" { authorDatetime: start of Psychotherapy.relevantPeriod }\r\n\t\t) ) InclusiveTreatments\r\n\t\twith \"Qualifying.Encounters\" Encounters\r\n\t\t\tsuch that InclusiveTreatments.authorDatetime 42 days or less after start of Encounters.relevantPeriod\r\n\r\ndefine \"Numerator\":\r\n\texists ( from\r\n\t\t\t[\"Procedure, Performed\": \"BH Assessment for Alcohol or Other Drugs\"] Assessment,\r\n\t\t\t\"Qualifying.Encounters\" Encounter,\r\n\t\t\t\"Qualifying Treatments\" Treatment\r\n\t\t\twhere Assessment.relevantPeriod starts same or after start of Encounter.relevantPeriod\r\n\t\t\t\tand Assessment.relevantPeriod ends same or before Treatment.authorDatetime\r\n\t\t\t\tand not exists ( \"Qualifying Treatments\" QualifiedTreatment\r\n\t\t\t\t\t\twhere QualifiedTreatment.authorDatetime before Treatment.authorDatetime\r\n\t\t\t\t\t\t\tand QualifiedTreatment.authorDatetime same or after start of Encounter.relevantPeriod\r\n\t\t\t\t)\r\n\t)\r\n\r\ndefine \"Medication Active Or Diagnoses\":\r\n\t( \"Medications Active\" MedicationActive\r\n\t\t\tunion ( \"Bipolar Disorder Or Unipolar Depression\" Diagnoses\r\n\t\t\t\t\treturn \"Medication, Active\" { relevantPeriod: Diagnoses.prevalencePeriod }\r\n\t\t\t)\r\n\t)\r\n", - "elm_annotations": { - "statements": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"SDE Ethnicity\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Patient Characteristic Ethnicity\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Ethnicity\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "18" - } - ], - "ref_id": "19" - } - ], - "define_name": "SDE Ethnicity" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"SDE Payer\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Patient Characteristic Payer\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Payer\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "20" - } - ], - "ref_id": "21" - } - ], - "define_name": "SDE Payer" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"SDE Race\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Patient Characteristic Race\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Race\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "22" - } - ], - "ref_id": "23" - } - ], - "define_name": "SDE Race" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"SDE Sex\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Patient Characteristic Sex\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"ONC Administrative Sex\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "24" - } - ], - "ref_id": "25" - } - ], - "define_name": "SDE Sex" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Bipolar Disorder Or Unipolar Depression\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Diagnosis\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Condition Involving Bipolar Disorder\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "26" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Diagnosis\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Condition Involving Unipolar Depression\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "27" - } - ], - "node_type": "Union", - "ref_id": "28" - } - ], - "ref_id": "29" - } - ], - "define_name": "Bipolar Disorder Or Unipolar Depression" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Index Behavioral Health Outpatient Encounter\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Outpatient encounter\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "35" - } - ], - "node_type": "Retrieve", - "ref_id": "35" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "36" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Bipolar Disorder Or Unipolar Depression\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "37" - }, - { - "children": [ - { - "text": " Diagnoses" - } - ] - } - ], - "ref_id": "38" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "39" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "40" - } - ], - "node_type": "Property", - "ref_id": "40" - }, - { - "children": [ - { - "text": " overlaps before " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Diagnoses" - } - ] - } - ], - "ref_id": "41" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "prevalencePeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "42" - } - ], - "node_type": "Property", - "ref_id": "42" - } - ], - "node_type": "OverlapsBefore", - "ref_id": "43" - } - ], - "ref_id": "44" - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "45" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "46" - } - ], - "node_type": "Property", - "ref_id": "46" - }, - { - "children": [ - { - "text": " starts during " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "Interval[" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "47" - } - ], - "ref_id": "48" - }, - { - "children": [ - { - "text": ", " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "49" - } - ], - "node_type": "Start", - "ref_id": "50" - }, - { - "children": [ - { - "text": " + " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "323 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "51" - } - ], - "ref_id": "52" - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Interval", - "ref_id": "53" - } - ], - "ref_id": "54" - } - ], - "ref_id": "54" - } - ], - "node_type": "Query", - "ref_id": "55" - } - ], - "ref_id": "56" - } - ], - "define_name": "Index Behavioral Health Outpatient Encounter" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Procedures Ordered\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Procedure, Order\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Electroconvulsive Therapy\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "72" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Procedure, Order\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Counseling for Depression\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "73" - } - ], - "node_type": "Union", - "ref_id": "74" - } - ], - "ref_id": "75" - } - ], - "define_name": "Procedures Ordered" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Procedures Performed\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Procedure, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Electroconvulsive Therapy\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "79" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Procedure, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Counseling for Depression\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "80" - } - ], - "node_type": "Union", - "ref_id": "81" - } - ], - "ref_id": "82" - } - ], - "define_name": "Procedures Performed" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Medications Ordered\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Medication, Order\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Antidepressant Medication\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "92" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Medication, Order\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Mood Stabilizer Medication\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "93" - } - ], - "node_type": "Union", - "ref_id": "94" - } - ], - "ref_id": "95" - } - ], - "define_name": "Medications Ordered" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Treatments\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Procedures Ordered\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "76" - }, - { - "children": [ - { - "text": " ProcedureOrdered" - } - ] - } - ], - "ref_id": "77" - } - ] - } - ], - "node_type": "Query", - "ref_id": "78" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Procedures Performed\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "83" - }, - { - "children": [ - { - "text": " ProceduresPerformed" - } - ] - } - ], - "ref_id": "84" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "return " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Procedure, Order\" { " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime: " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "ProceduresPerformed" - } - ] - } - ], - "ref_id": "85" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "86" - } - ], - "node_type": "Property", - "ref_id": "86" - } - ], - "ref_id": "87" - } - ] - }, - { - "children": [ - { - "text": " }" - } - ] - } - ], - "node_type": "Instance", - "ref_id": "88" - } - ], - "ref_id": "89" - } - ], - "node_type": "Query", - "ref_id": "90" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "90" - } - ], - "node_type": "Union", - "ref_id": "91" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Medications Ordered\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "96" - }, - { - "children": [ - { - "text": " MedicationsOrdered" - } - ] - } - ], - "ref_id": "97" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "return " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Procedure, Order\" { " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime: " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "MedicationsOrdered" - } - ] - } - ], - "ref_id": "98" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "ref_id": "99" - } - ], - "ref_id": "99" - } - ] - }, - { - "children": [ - { - "text": " }" - } - ] - } - ], - "node_type": "Instance", - "ref_id": "100" - } - ], - "ref_id": "101" - } - ], - "node_type": "Query", - "ref_id": "102" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "102" - } - ], - "node_type": "Union", - "ref_id": "103" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Union", - "ref_id": "103" - } - ], - "ref_id": "104" - } - ], - "define_name": "Treatments" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Index Outpatient Encounter Before Treatment or Psychotherapy\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Encounter\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "57" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "58" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Outpatient Psychotherapy\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "59" - } - ], - "node_type": "Retrieve", - "ref_id": "59" - }, - { - "children": [ - { - "text": " Psychotherapy" - } - ] - } - ], - "ref_id": "60" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "61" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "62" - } - ], - "node_type": "Property", - "ref_id": "62" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "42 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "66" - }, - { - "children": [ - { - "text": " or less before" - } - ] - } - ], - "node_type": "In", - "ref_id": "67" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Psychotherapy" - } - ] - } - ], - "ref_id": "63" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "64" - } - ], - "node_type": "Property", - "ref_id": "64" - } - ], - "node_type": "Start", - "ref_id": "65" - } - ], - "node_type": "In", - "ref_id": "67" - } - ], - "ref_id": "68" - } - ], - "node_type": "Query", - "ref_id": "69" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "69" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Encounter\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "70" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "71" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Treatments\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "105" - }, - { - "children": [ - { - "text": " Treatment" - } - ] - } - ], - "ref_id": "106" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "107" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "108" - } - ], - "node_type": "Property", - "ref_id": "108" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "42 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "111" - }, - { - "children": [ - { - "text": " or less before" - } - ] - } - ], - "node_type": "In", - "ref_id": "112" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Treatment" - } - ] - } - ], - "ref_id": "109" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "110" - } - ], - "node_type": "Property", - "ref_id": "110" - } - ], - "node_type": "In", - "ref_id": "112" - } - ], - "ref_id": "113" - } - ], - "node_type": "Query", - "ref_id": "114" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "114" - } - ], - "node_type": "Union", - "ref_id": "115" - } - ], - "ref_id": "116" - } - ], - "define_name": "Index Outpatient Encounter Before Treatment or Psychotherapy" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Medications Active\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Medication, Active\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Antidepressant Medication\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "122" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Medication, Active\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Mood Stabilizer Medication\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "123" - } - ], - "node_type": "Union", - "ref_id": "124" - } - ], - "ref_id": "125" - } - ], - "define_name": "Medications Active" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Medication Active Or Diagnoses\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Medications Active\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "126" - }, - { - "children": [ - { - "text": " MedicationActive" - } - ] - } - ], - "ref_id": "127" - } - ] - } - ], - "node_type": "Query", - "ref_id": "128" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Bipolar Disorder Or Unipolar Depression\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "129" - }, - { - "children": [ - { - "text": " Diagnoses" - } - ] - } - ], - "ref_id": "130" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "return " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Medication, Active\" { " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod: " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Diagnoses" - } - ] - } - ], - "ref_id": "131" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "prevalencePeriod" - } - ] - } - ], - "ref_id": "132" - } - ], - "ref_id": "132" - } - ] - }, - { - "children": [ - { - "text": " }" - } - ] - } - ], - "node_type": "Instance", - "ref_id": "133" - } - ], - "ref_id": "134" - } - ], - "node_type": "Query", - "ref_id": "135" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "135" - } - ], - "node_type": "Union", - "ref_id": "136" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Union", - "ref_id": "136" - } - ], - "ref_id": "137" - } - ], - "define_name": "Medication Active Or Diagnoses" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Outpatient Encounter During Diagnosis or Medication Active\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Outpatient encounter\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "120" - } - ], - "node_type": "Retrieve", - "ref_id": "120" - }, - { - "children": [ - { - "text": " OutpatientEncounter" - } - ] - } - ], - "ref_id": "121" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Medication Active Or Diagnoses\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "138" - }, - { - "children": [ - { - "text": " MedicationDiagnosis" - } - ] - } - ], - "ref_id": "139" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "OutpatientEncounter" - } - ] - } - ], - "ref_id": "140" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "141" - } - ], - "node_type": "Property", - "ref_id": "141" - }, - { - "children": [ - { - "text": " during " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "MedicationDiagnosis" - } - ] - } - ], - "ref_id": "142" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "143" - } - ], - "node_type": "Property", - "ref_id": "143" - } - ], - "node_type": "IncludedIn", - "ref_id": "144" - } - ], - "ref_id": "145" - } - ], - "node_type": "Query", - "ref_id": "146" - } - ], - "ref_id": "147" - } - ], - "define_name": "Outpatient Encounter During Diagnosis or Medication Active" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Outpatient Psychotherapy During Diagnoses\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Outpatient Psychotherapy\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "149" - } - ], - "node_type": "Retrieve", - "ref_id": "149" - }, - { - "children": [ - { - "text": " OutpatientPsychotherapy" - } - ] - } - ], - "ref_id": "150" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Bipolar Disorder Or Unipolar Depression\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "151" - }, - { - "children": [ - { - "text": " Diagnoses" - } - ] - } - ], - "ref_id": "152" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "OutpatientPsychotherapy" - } - ] - } - ], - "ref_id": "153" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "154" - } - ], - "node_type": "Property", - "ref_id": "154" - }, - { - "children": [ - { - "text": " during " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Diagnoses" - } - ] - } - ], - "ref_id": "155" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "prevalencePeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "156" - } - ], - "node_type": "Property", - "ref_id": "156" - } - ], - "node_type": "IncludedIn", - "ref_id": "157" - } - ], - "ref_id": "158" - } - ], - "node_type": "Query", - "ref_id": "159" - } - ], - "ref_id": "160" - } - ], - "define_name": "Outpatient Psychotherapy During Diagnoses" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Diagnoses Start During Encounters\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Bipolar Disorder Or Unipolar Depression\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "175" - }, - { - "children": [ - { - "text": " Diagnoses" - } - ] - } - ], - "ref_id": "176" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Outpatient encounter\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "177" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Outpatient Psychotherapy\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "178" - } - ], - "node_type": "Union", - "ref_id": "179" - }, - { - "children": [ - { - "text": " )" - } - ] - } - ], - "node_type": "Union", - "ref_id": "179" - }, - { - "children": [ - { - "text": " Encounters" - } - ] - } - ], - "ref_id": "180" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Diagnoses" - } - ] - } - ], - "ref_id": "181" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "prevalencePeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "182" - } - ], - "node_type": "Property", - "ref_id": "182" - }, - { - "children": [ - { - "text": " starts during " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounters" - } - ] - } - ], - "ref_id": "183" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "184" - } - ], - "node_type": "Property", - "ref_id": "184" - } - ], - "node_type": "In", - "ref_id": "185" - } - ], - "ref_id": "186" - } - ], - "node_type": "Query", - "ref_id": "187" - } - ], - "ref_id": "188" - } - ], - "define_name": "Diagnoses Start During Encounters" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Outpatient Encounter 180 days after Encounter Diagnosis Treatment\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Encounter\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "118" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "119" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Outpatient Encounter During Diagnosis or Medication Active\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "148" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Outpatient Psychotherapy During Diagnoses\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "161" - } - ], - "node_type": "Union", - "ref_id": "162" - }, - { - "children": [ - { - "text": " )" - } - ] - } - ], - "node_type": "Union", - "ref_id": "162" - }, - { - "children": [ - { - "text": " PriorEncounter" - } - ] - } - ], - "ref_id": "163" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "164" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "165" - } - ], - "node_type": "Property", - "ref_id": "165" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "180 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "169" - }, - { - "children": [ - { - "text": " or less after" - } - ] - } - ], - "node_type": "In", - "ref_id": "170" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "PriorEncounter" - } - ] - } - ], - "ref_id": "166" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "167" - } - ], - "node_type": "Property", - "ref_id": "167" - } - ], - "node_type": "Start", - "ref_id": "168" - } - ], - "node_type": "In", - "ref_id": "170" - } - ], - "ref_id": "171" - } - ], - "node_type": "Query", - "ref_id": "172" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "172" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Encounter\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "173" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "174" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Diagnoses Start During Encounters\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "189" - }, - { - "children": [ - { - "text": " Diagnoses" - } - ] - } - ], - "ref_id": "190" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "191" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "192" - } - ], - "node_type": "Property", - "ref_id": "192" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "180 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "195" - }, - { - "children": [ - { - "text": " or less after" - } - ] - } - ], - "node_type": "In", - "ref_id": "196" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Diagnoses" - } - ] - } - ], - "ref_id": "193" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "prevalencePeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "194" - } - ], - "node_type": "Property", - "ref_id": "194" - } - ], - "node_type": "In", - "ref_id": "196" - } - ], - "ref_id": "197" - } - ], - "node_type": "Query", - "ref_id": "198" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "198" - } - ], - "node_type": "Union", - "ref_id": "199" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Encounter\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "200" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "201" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Treatments\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "202" - }, - { - "children": [ - { - "text": " Treatment" - } - ] - } - ], - "ref_id": "203" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "204" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "205" - } - ], - "node_type": "Property", - "ref_id": "205" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "180 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "208" - }, - { - "children": [ - { - "text": " or less after" - } - ] - } - ], - "node_type": "In", - "ref_id": "209" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Treatment" - } - ] - } - ], - "ref_id": "206" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "207" - } - ], - "node_type": "Property", - "ref_id": "207" - } - ], - "node_type": "In", - "ref_id": "209" - } - ], - "ref_id": "210" - } - ], - "node_type": "Query", - "ref_id": "211" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "211" - } - ], - "node_type": "Union", - "ref_id": "212" - } - ], - "ref_id": "213" - } - ], - "define_name": "Outpatient Encounter 180 days after Encounter Diagnosis Treatment" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Index Behavioral Health Outpatient Psychotherapy\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Outpatient Psychotherapy\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "216" - } - ], - "node_type": "Retrieve", - "ref_id": "216" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "217" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Bipolar Disorder Or Unipolar Depression\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "218" - }, - { - "children": [ - { - "text": " Diagnoses" - } - ] - } - ], - "ref_id": "219" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "220" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "221" - } - ], - "node_type": "Property", - "ref_id": "221" - }, - { - "children": [ - { - "text": " overlaps before " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Diagnoses" - } - ] - } - ], - "ref_id": "222" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "prevalencePeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "223" - } - ], - "node_type": "Property", - "ref_id": "223" - } - ], - "node_type": "OverlapsBefore", - "ref_id": "224" - } - ], - "ref_id": "225" - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "226" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "227" - } - ], - "node_type": "Property", - "ref_id": "227" - }, - { - "children": [ - { - "text": " starts during " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "Interval[" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "228" - } - ], - "ref_id": "229" - }, - { - "children": [ - { - "text": ", " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "230" - } - ], - "node_type": "Start", - "ref_id": "231" - }, - { - "children": [ - { - "text": " + " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "323 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "232" - } - ], - "ref_id": "233" - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Interval", - "ref_id": "234" - } - ], - "ref_id": "235" - } - ], - "ref_id": "235" - } - ], - "node_type": "Query", - "ref_id": "236" - } - ], - "ref_id": "237" - } - ], - "define_name": "Index Behavioral Health Outpatient Psychotherapy" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Psychotherapy\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "238" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "239" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Outpatient Psychotherapy\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "240" - } - ], - "node_type": "Retrieve", - "ref_id": "240" - }, - { - "children": [ - { - "text": " OutpatientPsychotherapy" - } - ] - } - ], - "ref_id": "241" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "242" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "243" - } - ], - "node_type": "Property", - "ref_id": "243" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "42 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "247" - }, - { - "children": [ - { - "text": " or less before" - } - ] - } - ], - "node_type": "In", - "ref_id": "248" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "OutpatientPsychotherapy" - } - ] - } - ], - "ref_id": "244" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "245" - } - ], - "node_type": "Property", - "ref_id": "245" - } - ], - "node_type": "Start", - "ref_id": "246" - } - ], - "node_type": "In", - "ref_id": "248" - } - ], - "ref_id": "249" - } - ], - "node_type": "Query", - "ref_id": "250" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "250" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Psychotherapy\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "251" - }, - { - "children": [ - { - "text": " IndexOutpatientPsychotherapyEncounter" - } - ] - } - ], - "ref_id": "252" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Treatments\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "253" - }, - { - "children": [ - { - "text": " Treatment" - } - ] - } - ], - "ref_id": "254" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "IndexOutpatientPsychotherapyEncounter" - } - ] - } - ], - "ref_id": "255" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "256" - } - ], - "node_type": "Property", - "ref_id": "256" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "42 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "259" - }, - { - "children": [ - { - "text": " or less before" - } - ] - } - ], - "node_type": "In", - "ref_id": "260" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Treatment" - } - ] - } - ], - "ref_id": "257" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "258" - } - ], - "node_type": "Property", - "ref_id": "258" - } - ], - "node_type": "In", - "ref_id": "260" - } - ], - "ref_id": "261" - } - ], - "node_type": "Query", - "ref_id": "262" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "262" - } - ], - "node_type": "Union", - "ref_id": "263" - } - ], - "ref_id": "264" - } - ], - "define_name": "Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "266" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "267" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Outpatient Encounter During Diagnosis or Medication Active\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "268" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Outpatient Psychotherapy During Diagnoses\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "269" - } - ], - "node_type": "Union", - "ref_id": "270" - }, - { - "children": [ - { - "text": " )" - } - ] - } - ], - "node_type": "Union", - "ref_id": "270" - }, - { - "children": [ - { - "text": " PriorEncounter" - } - ] - } - ], - "ref_id": "271" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "272" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "273" - } - ], - "node_type": "Property", - "ref_id": "273" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "180 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "277" - }, - { - "children": [ - { - "text": " or less after" - } - ] - } - ], - "node_type": "In", - "ref_id": "278" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "PriorEncounter" - } - ] - } - ], - "ref_id": "274" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "275" - } - ], - "node_type": "Property", - "ref_id": "275" - } - ], - "node_type": "Start", - "ref_id": "276" - } - ], - "node_type": "In", - "ref_id": "278" - } - ], - "ref_id": "279" - } - ], - "node_type": "Query", - "ref_id": "280" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "280" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "281" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "282" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Diagnoses Start During Encounters\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "283" - }, - { - "children": [ - { - "text": " Diagnoses" - } - ] - } - ], - "ref_id": "284" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "285" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "286" - } - ], - "node_type": "Property", - "ref_id": "286" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "180 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "289" - }, - { - "children": [ - { - "text": " or less after" - } - ] - } - ], - "node_type": "In", - "ref_id": "290" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Diagnoses" - } - ] - } - ], - "ref_id": "287" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "prevalencePeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "288" - } - ], - "node_type": "Property", - "ref_id": "288" - } - ], - "node_type": "In", - "ref_id": "290" - } - ], - "ref_id": "291" - } - ], - "node_type": "Query", - "ref_id": "292" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "292" - } - ], - "node_type": "Union", - "ref_id": "293" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "294" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "295" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Treatments\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "296" - }, - { - "children": [ - { - "text": " Treatment" - } - ] - } - ], - "ref_id": "297" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "298" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "299" - } - ], - "node_type": "Property", - "ref_id": "299" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "starts " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "180 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "302" - }, - { - "children": [ - { - "text": " or less after" - } - ] - } - ], - "node_type": "In", - "ref_id": "303" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Treatment" - } - ] - } - ], - "ref_id": "300" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "301" - } - ], - "node_type": "Property", - "ref_id": "301" - } - ], - "node_type": "In", - "ref_id": "303" - } - ], - "ref_id": "304" - } - ], - "node_type": "Query", - "ref_id": "305" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "305" - } - ], - "node_type": "Union", - "ref_id": "306" - } - ], - "ref_id": "307" - } - ], - "define_name": "Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Qualifying.Encounters\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Outpatient Encounter Before Treatment or Psychotherapy\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "117" - }, - { - "children": [ - { - "text": "\n except " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Outpatient Encounter 180 days after Encounter Diagnosis Treatment\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "214" - } - ], - "node_type": "Except", - "ref_id": "215" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Except", - "ref_id": "215" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "265" - }, - { - "children": [ - { - "text": "\n except " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "308" - } - ], - "node_type": "Except", - "ref_id": "309" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Except", - "ref_id": "309" - } - ], - "node_type": "Union", - "ref_id": "310" - } - ], - "ref_id": "311" - } - ], - "define_name": "Qualifying.Encounters" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Initial Population\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "AgeInYearsAt(" - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Measurement Period\"" - } - ] - } - ], - "node_type": "ParameterRef", - "ref_id": "30" - } - ], - "node_type": "Start", - "ref_id": "31" - }, - { - "children": [ - { - "text": ")" - } - ] - } - ], - "node_type": "CalculateAgeAt", - "ref_id": "32" - }, - { - "children": [ - { - "text": ">= 18" - } - ] - } - ], - "node_type": "GreaterOrEqual", - "ref_id": "34" - }, - { - "children": [ - { - "text": "\n and " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "exists " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Qualifying.Encounters\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "312" - }, - { - "children": [ - { - "text": " )" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "312" - } - ], - "node_type": "Exists", - "ref_id": "313" - } - ], - "node_type": "And", - "ref_id": "314" - } - ], - "ref_id": "315" - } - ], - "define_name": "Initial Population" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Denominator\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Initial Population\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "316" - } - ], - "ref_id": "317" - } - ], - "define_name": "Denominator" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Qualifying Treatments\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Treatments\"" - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "318" - }, - { - "children": [ - { - "text": "\n union " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Encounter, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Outpatient Psychotherapy\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "319" - } - ], - "node_type": "Retrieve", - "ref_id": "319" - }, - { - "children": [ - { - "text": " Psychotherapy" - } - ] - } - ], - "ref_id": "320" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "return " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"Procedure, Order\" { " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime: " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Psychotherapy" - } - ] - } - ], - "ref_id": "321" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "322" - } - ], - "node_type": "Property", - "ref_id": "322" - } - ], - "ref_id": "323" - } - ] - }, - { - "children": [ - { - "text": " }" - } - ] - } - ], - "node_type": "Instance", - "ref_id": "324" - } - ], - "ref_id": "325" - } - ], - "node_type": "Query", - "ref_id": "326" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "326" - } - ], - "node_type": "Union", - "ref_id": "327" - }, - { - "children": [ - { - "text": " )" - } - ] - } - ], - "node_type": "Union", - "ref_id": "327" - }, - { - "children": [ - { - "text": " InclusiveTreatments" - } - ] - } - ], - "ref_id": "328" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "with " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Qualifying.Encounters\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "329" - }, - { - "children": [ - { - "text": " Encounters" - } - ] - } - ], - "ref_id": "330" - }, - { - "children": [ - { - "text": "\n such that " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "InclusiveTreatments" - } - ] - } - ], - "ref_id": "331" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "332" - } - ], - "node_type": "Property", - "ref_id": "332" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "42 days" - } - ] - } - ], - "node_type": "Quantity", - "ref_id": "336" - }, - { - "children": [ - { - "text": " or less after" - } - ] - } - ], - "node_type": "In", - "ref_id": "337" - }, - { - "children": [ - { - "text": " " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounters" - } - ] - } - ], - "ref_id": "333" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "334" - } - ], - "node_type": "Property", - "ref_id": "334" - } - ], - "node_type": "Start", - "ref_id": "335" - } - ], - "node_type": "In", - "ref_id": "337" - } - ], - "ref_id": "338" - } - ], - "node_type": "Query", - "ref_id": "339" - } - ], - "ref_id": "340" - } - ], - "define_name": "Qualifying Treatments" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "define \"Numerator\":\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "exists " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "from\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "[\"Procedure, Performed\": " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "\"BH Assessment for Alcohol or Other Drugs\"" - } - ] - } - ] - }, - { - "children": [ - { - "text": "]" - } - ] - } - ], - "node_type": "Retrieve", - "ref_id": "341" - } - ], - "node_type": "Retrieve", - "ref_id": "341" - }, - { - "children": [ - { - "text": " Assessment" - } - ] - } - ], - "ref_id": "342" - }, - { - "children": [ - { - "text": ",\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Qualifying.Encounters\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "343" - }, - { - "children": [ - { - "text": " Encounter" - } - ] - } - ], - "ref_id": "344" - }, - { - "children": [ - { - "text": ",\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Qualifying Treatments\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "345" - }, - { - "children": [ - { - "text": " Treatment" - } - ] - } - ], - "ref_id": "346" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Assessment" - } - ] - } - ], - "ref_id": "347" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "348" - } - ], - "node_type": "Property", - "ref_id": "348" - }, - { - "children": [ - { - "text": " starts same or after " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "349" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "350" - } - ], - "node_type": "Property", - "ref_id": "350" - } - ], - "node_type": "Start", - "ref_id": "351" - } - ], - "node_type": "SameOrAfter", - "ref_id": "352" - }, - { - "children": [ - { - "text": "\n and " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Assessment" - } - ] - } - ], - "ref_id": "353" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "354" - } - ], - "node_type": "Property", - "ref_id": "354" - }, - { - "children": [ - { - "text": " ends same or before " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Treatment" - } - ] - } - ], - "ref_id": "355" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "356" - } - ], - "node_type": "Property", - "ref_id": "356" - } - ], - "node_type": "SameOrBefore", - "ref_id": "357" - } - ], - "node_type": "And", - "ref_id": "358" - }, - { - "children": [ - { - "text": "\n and " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "not " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "exists " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "( " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "\"Qualifying Treatments\"" - } - ] - } - ] - } - ], - "node_type": "ExpressionRef", - "ref_id": "359" - }, - { - "children": [ - { - "text": " QualifiedTreatment" - } - ] - } - ], - "ref_id": "360" - } - ] - }, - { - "children": [ - { - "text": "\n " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "where " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "QualifiedTreatment" - } - ] - } - ], - "ref_id": "361" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "362" - } - ], - "node_type": "Property", - "ref_id": "362" - }, - { - "children": [ - { - "text": " before " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Treatment" - } - ] - } - ], - "ref_id": "363" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "364" - } - ], - "node_type": "Property", - "ref_id": "364" - } - ], - "node_type": "Before", - "ref_id": "365" - }, - { - "children": [ - { - "text": "\n and " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "QualifiedTreatment" - } - ] - } - ], - "ref_id": "366" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "authorDatetime" - } - ] - } - ], - "node_type": "Property", - "ref_id": "367" - } - ], - "node_type": "Property", - "ref_id": "367" - }, - { - "children": [ - { - "text": " same or after " - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "start of " - } - ] - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "text": "Encounter" - } - ] - } - ], - "ref_id": "368" - }, - { - "children": [ - { - "text": "." - } - ] - }, - { - "children": [ - { - "children": [ - { - "text": "relevantPeriod" - } - ] - } - ], - "node_type": "Property", - "ref_id": "369" - } - ], - "node_type": "Property", - "ref_id": "369" - } - ], - "node_type": "Start", - "ref_id": "370" - } - ], - "node_type": "SameOrAfter", - "ref_id": "371" - } - ], - "ref_id": "372" - } - ], - "ref_id": "372" - } - ], - "node_type": "Query", - "ref_id": "373" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "373" - } - ], - "node_type": "Exists", - "ref_id": "374" - } - ], - "node_type": "Not", - "ref_id": "375" - } - ], - "ref_id": "376" - } - ], - "ref_id": "376" - } - ], - "node_type": "Query", - "ref_id": "377" - }, - { - "children": [ - { - "text": "\n )" - } - ] - } - ], - "node_type": "Query", - "ref_id": "377" - } - ], - "node_type": "Exists", - "ref_id": "378" - } - ], - "ref_id": "379" - } - ], - "define_name": "Numerator" - } - ], - "identifier": { - "id": "Test169", - "version": "0.0.040" - } - }, - "is_main_library": true, - "statement_dependencies": [ - { - "_id": "609d8395b789027a3282eafb", - "statement_name": "Patient" - }, - { - "_id": "609d8395b789027a3282eafc", - "statement_name": "SDE Ethnicity" - }, - { - "_id": "609d8395b789027a3282eafd", - "statement_name": "SDE Payer" - }, - { - "_id": "609d8395b789027a3282eafe", - "statement_name": "SDE Race" - }, - { - "_id": "609d8395b789027a3282eaff", - "statement_name": "SDE Sex" - }, - { - "_id": "609d8395b789027a3282eb00", - "statement_name": "Bipolar Disorder Or Unipolar Depression" - }, - { - "_id": "609d8395b789027a3282eb01", - "statement_name": "Index Behavioral Health Outpatient Encounter", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb02", - "library_name": "Test169", - "statement_name": "Bipolar Disorder Or Unipolar Depression" - } - ] - }, - { - "_id": "609d8395b789027a3282eb03", - "statement_name": "Procedures Ordered" - }, - { - "_id": "609d8395b789027a3282eb04", - "statement_name": "Procedures Performed" - }, - { - "_id": "609d8395b789027a3282eb05", - "statement_name": "Medications Ordered" - }, - { - "_id": "609d8395b789027a3282eb06", - "statement_name": "Treatments", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb07", - "library_name": "Test169", - "statement_name": "Procedures Ordered" - }, - { - "_id": "609d8395b789027a3282eb08", - "library_name": "Test169", - "statement_name": "Procedures Performed" - }, - { - "_id": "609d8395b789027a3282eb09", - "library_name": "Test169", - "statement_name": "Medications Ordered" - } - ] - }, - { - "_id": "609d8395b789027a3282eb0a", - "statement_name": "Index Outpatient Encounter Before Treatment or Psychotherapy", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb0b", - "library_name": "Test169", - "statement_name": "Index Behavioral Health Outpatient Encounter" - }, - { - "_id": "609d8395b789027a3282eb0c", - "library_name": "Test169", - "statement_name": "Treatments" - } - ] - }, - { - "_id": "609d8395b789027a3282eb0d", - "statement_name": "Medications Active" - }, - { - "_id": "609d8395b789027a3282eb0e", - "statement_name": "Medication Active Or Diagnoses", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb0f", - "library_name": "Test169", - "statement_name": "Medications Active" - }, - { - "_id": "609d8395b789027a3282eb10", - "library_name": "Test169", - "statement_name": "Bipolar Disorder Or Unipolar Depression" - } - ] - }, - { - "_id": "609d8395b789027a3282eb11", - "statement_name": "Outpatient Encounter During Diagnosis or Medication Active", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb12", - "library_name": "Test169", - "statement_name": "Medication Active Or Diagnoses" - } - ] - }, - { - "_id": "609d8395b789027a3282eb13", - "statement_name": "Outpatient Psychotherapy During Diagnoses", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb14", - "library_name": "Test169", - "statement_name": "Bipolar Disorder Or Unipolar Depression" - } - ] - }, - { - "_id": "609d8395b789027a3282eb15", - "statement_name": "Diagnoses Start During Encounters", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb16", - "library_name": "Test169", - "statement_name": "Bipolar Disorder Or Unipolar Depression" - } - ] - }, - { - "_id": "609d8395b789027a3282eb17", - "statement_name": "Outpatient Encounter 180 days after Encounter Diagnosis Treatment", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb18", - "library_name": "Test169", - "statement_name": "Index Behavioral Health Outpatient Encounter" - }, - { - "_id": "609d8395b789027a3282eb19", - "library_name": "Test169", - "statement_name": "Outpatient Encounter During Diagnosis or Medication Active" - }, - { - "_id": "609d8395b789027a3282eb1a", - "library_name": "Test169", - "statement_name": "Outpatient Psychotherapy During Diagnoses" - }, - { - "_id": "609d8395b789027a3282eb1b", - "library_name": "Test169", - "statement_name": "Diagnoses Start During Encounters" - }, - { - "_id": "609d8395b789027a3282eb1c", - "library_name": "Test169", - "statement_name": "Treatments" - } - ] - }, - { - "_id": "609d8395b789027a3282eb1d", - "statement_name": "Index Behavioral Health Outpatient Psychotherapy", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb1e", - "library_name": "Test169", - "statement_name": "Bipolar Disorder Or Unipolar Depression" - } - ] - }, - { - "_id": "609d8395b789027a3282eb1f", - "statement_name": "Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb20", - "library_name": "Test169", - "statement_name": "Index Behavioral Health Outpatient Psychotherapy" - }, - { - "_id": "609d8395b789027a3282eb21", - "library_name": "Test169", - "statement_name": "Treatments" - } - ] - }, - { - "_id": "609d8395b789027a3282eb22", - "statement_name": "Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb23", - "library_name": "Test169", - "statement_name": "Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy" - }, - { - "_id": "609d8395b789027a3282eb24", - "library_name": "Test169", - "statement_name": "Outpatient Encounter During Diagnosis or Medication Active" - }, - { - "_id": "609d8395b789027a3282eb25", - "library_name": "Test169", - "statement_name": "Outpatient Psychotherapy During Diagnoses" - }, - { - "_id": "609d8395b789027a3282eb26", - "library_name": "Test169", - "statement_name": "Diagnoses Start During Encounters" - }, - { - "_id": "609d8395b789027a3282eb27", - "library_name": "Test169", - "statement_name": "Treatments" - } - ] - }, - { - "_id": "609d8395b789027a3282eb28", - "statement_name": "Qualifying.Encounters", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb29", - "library_name": "Test169", - "statement_name": "Index Outpatient Encounter Before Treatment or Psychotherapy" - }, - { - "_id": "609d8395b789027a3282eb2a", - "library_name": "Test169", - "statement_name": "Outpatient Encounter 180 days after Encounter Diagnosis Treatment" - }, - { - "_id": "609d8395b789027a3282eb2b", - "library_name": "Test169", - "statement_name": "Index Behavioral Health Outpatient Psychotherapy Before Treatment or Psychotherapy" - }, - { - "_id": "609d8395b789027a3282eb2c", - "library_name": "Test169", - "statement_name": "Outpatient Psychotherapy 180 days after Encounter Diagnosis Treatment" - } - ] - }, - { - "_id": "609d8395b789027a3282eb2d", - "statement_name": "Initial Population", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb2e", - "library_name": "Test169", - "statement_name": "Patient" - }, - { - "_id": "609d8395b789027a3282eb2f", - "library_name": "Test169", - "statement_name": "Qualifying.Encounters" - } - ] - }, - { - "_id": "609d8395b789027a3282eb30", - "statement_name": "Denominator", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb31", - "library_name": "Test169", - "statement_name": "Initial Population" - } - ] - }, - { - "_id": "609d8395b789027a3282eb32", - "statement_name": "Qualifying Treatments", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb33", - "library_name": "Test169", - "statement_name": "Treatments" - }, - { - "_id": "609d8395b789027a3282eb34", - "library_name": "Test169", - "statement_name": "Qualifying.Encounters" - } - ] - }, - { - "_id": "609d8395b789027a3282eb35", - "statement_name": "Numerator", - "statement_references": [ - { - "_id": "609d8395b789027a3282eb36", - "library_name": "Test169", - "statement_name": "Qualifying.Encounters" - }, - { - "_id": "609d8395b789027a3282eb37", - "library_name": "Test169", - "statement_name": "Qualifying Treatments" - } - ] - } - ] - } - ], - "source_data_criteria": [ - { - "_id": "609d8395b789027a3282eb38", - "dataElementCodes": [ - - ], - "_type": "QDM::PatientCharacteristicPayer", - "qdmTitle": "Patient Characteristic Payer", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.58", - "qdmCategory": "patient_characteristic", - "qdmStatus": "payer", - "qdmVersion": "5.6", - "description": "Patient Characteristic Payer: Payer", - "codeListId": "2.16.840.1.114222.4.11.3591" - }, - { - "_id": "609d8395b789027a3282eb39", - "dataElementCodes": [ - - ], - "_type": "QDM::PatientCharacteristicSex", - "qdmTitle": "Patient Characteristic Sex", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.55", - "qdmCategory": "patient_characteristic", - "qdmStatus": "gender", - "qdmVersion": "5.6", - "description": "Patient Characteristic Sex: ONCAdministrativeSex", - "codeListId": "2.16.840.1.113762.1.4.1" - }, - { - "_id": "609d8395b789027a3282eb3a", - "dataElementCodes": [ - - ], - "_type": "QDM::ProcedureOrder", - "qdmTitle": "Procedure, Order", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.66", - "qdmCategory": "procedure", - "qdmStatus": "order", - "qdmVersion": "5.6", - "description": "Procedure, Order: BHCounselingforDepression", - "codeListId": "2.16.840.1.113883.3.1257.1.1616" - }, - { - "_id": "609d8395b789027a3282eb3b", - "dataElementCodes": [ - - ], - "_type": "QDM::ProcedurePerformed", - "qdmTitle": "Procedure, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.67", - "qdmCategory": "procedure", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Procedure, Performed: BHCounselingforDepression", - "codeListId": "2.16.840.1.113883.3.1257.1.1616" - }, - { - "_id": "609d8395b789027a3282eb3c", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: BHOutpatientPsychotherapy", - "codeListId": "2.16.840.1.113883.3.1257.1.973" - }, - { - "_id": "609d8395b789027a3282eb3d", - "dataElementCodes": [ - - ], - "_type": "QDM::ProcedureOrder", - "qdmTitle": "Procedure, Order", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.66", - "qdmCategory": "procedure", - "qdmStatus": "order", - "qdmVersion": "5.6", - "description": "Procedure, Order: BHElectroconvulsiveTherapy", - "codeListId": "2.16.840.1.113883.3.1257.1.1533" - }, - { - "_id": "609d8395b789027a3282eb3e", - "dataElementCodes": [ - - ], - "_type": "QDM::ProcedurePerformed", - "qdmTitle": "Procedure, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.67", - "qdmCategory": "procedure", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Procedure, Performed: BHElectroconvulsiveTherapy", - "codeListId": "2.16.840.1.113883.3.1257.1.1533" - }, - { - "_id": "609d8395b789027a3282eb3f", - "dataElementCodes": [ - - ], - "_type": "QDM::PatientCharacteristicEthnicity", - "qdmTitle": "Patient Characteristic Ethnicity", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.56", - "qdmCategory": "patient_characteristic", - "qdmStatus": "ethnicity", - "qdmVersion": "5.6", - "description": "Patient Characteristic Ethnicity: Ethnicity", - "codeListId": "2.16.840.1.114222.4.11.837" - }, - { - "_id": "609d8395b789027a3282eb40", - "dataElementCodes": [ - - ], - "_type": "QDM::EncounterPerformed", - "facilityLocations": [ - - ], - "qdmTitle": "Encounter, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.5", - "qdmCategory": "encounter", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Encounter, Performed: BHOutpatientencounter", - "codeListId": "2.16.840.1.113883.3.464.1.49" - }, - { - "_id": "609d8395b789027a3282eb41", - "dataElementCodes": [ - - ], - "_type": "QDM::MedicationOrder", - "qdmTitle": "Medication, Order", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.51", - "qdmCategory": "medication", - "qdmStatus": "order", - "qdmVersion": "5.6", - "description": "Medication, Order: BHMoodStabilizerMedication", - "codeListId": "2.16.840.1.113883.3.1257.1.950" - }, - { - "_id": "609d8395b789027a3282eb42", - "dataElementCodes": [ - - ], - "_type": "QDM::MedicationActive", - "qdmTitle": "Medication, Active", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.44", - "qdmCategory": "medication", - "qdmStatus": "active", - "qdmVersion": "5.6", - "description": "Medication, Active: BHMoodStabilizerMedication", - "codeListId": "2.16.840.1.113883.3.1257.1.950" - }, - { - "_id": "609d8395b789027a3282eb43", - "dataElementCodes": [ - - ], - "_type": "QDM::PatientCharacteristicRace", - "qdmTitle": "Patient Characteristic Race", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.59", - "qdmCategory": "patient_characteristic", - "qdmStatus": "race", - "qdmVersion": "5.6", - "description": "Patient Characteristic Race: Race", - "codeListId": "2.16.840.1.114222.4.11.836" - }, - { - "_id": "609d8395b789027a3282eb44", - "dataElementCodes": [ - - ], - "_type": "QDM::MedicationOrder", - "qdmTitle": "Medication, Order", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.51", - "qdmCategory": "medication", - "qdmStatus": "order", - "qdmVersion": "5.6", - "description": "Medication, Order: BHAntidepressantMedication", - "codeListId": "2.16.840.1.113883.3.1257.1.972" - }, - { - "_id": "609d8395b789027a3282eb45", - "dataElementCodes": [ - - ], - "_type": "QDM::MedicationActive", - "qdmTitle": "Medication, Active", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.44", - "qdmCategory": "medication", - "qdmStatus": "active", - "qdmVersion": "5.6", - "description": "Medication, Active: BHAntidepressantMedication", - "codeListId": "2.16.840.1.113883.3.1257.1.972" - }, - { - "_id": "609d8395b789027a3282eb46", - "dataElementCodes": [ - - ], - "_type": "QDM::Diagnosis", - "qdmTitle": "Diagnosis", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "qrdaOid": "2.16.840.1.113883.10.20.24.3.135", - "qdmCategory": "condition", - "qdmVersion": "5.6", - "description": "Diagnosis: BHConditionInvolvingUnipolarDepression", - "codeListId": "2.16.840.1.113883.3.1257.1.1505" - }, - { - "_id": "609d8395b789027a3282eb47", - "dataElementCodes": [ - - ], - "_type": "QDM::Diagnosis", - "qdmTitle": "Diagnosis", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.110", - "qrdaOid": "2.16.840.1.113883.10.20.24.3.135", - "qdmCategory": "condition", - "qdmVersion": "5.6", - "description": "Diagnosis: BHConditionInvolvingBipolarDisorder", - "codeListId": "2.16.840.1.113883.3.1257.1.1504" - }, - { - "_id": "609d8395b789027a3282eb48", - "dataElementCodes": [ - - ], - "_type": "QDM::ProcedurePerformed", - "qdmTitle": "Procedure, Performed", - "hqmfOid": "2.16.840.1.113883.10.20.28.4.67", - "qdmCategory": "procedure", - "qdmStatus": "performed", - "qdmVersion": "5.6", - "description": "Procedure, Performed: BHAssessmentforAlcoholorOtherDrugs", - "codeListId": "2.16.840.1.113883.3.1257.1.1604" - } - ], - "population_sets": [ - { - "_id": "609d8395b789027a3282eb49", - "title": "Population Criteria Section", - "population_set_id": "PopulationSet_1", - "populations": { - "_id": "609d8395b789027a3282eb4a", - "_type": "CQM::ProportionPopulationMap", - "IPP": { - "_id": "609d8395b789027a3282eb4b", - "library_name": "Test169", - "statement_name": "Initial Population", - "hqmf_id": "CAC0D59A-3670-4BBC-A38E-D40E3353F39D" - }, - "DENOM": { - "_id": "609d8395b789027a3282eb4c", - "library_name": "Test169", - "statement_name": "Denominator", - "hqmf_id": "F3BDBF69-33BF-4F72-9266-5A83CB937729" - }, - "NUMER": { - "_id": "609d8395b789027a3282eb4d", - "library_name": "Test169", - "statement_name": "Numerator", - "hqmf_id": "72EF6B54-8108-4DA2-9492-E6D56DF23F4D" - } - }, - "supplemental_data_elements": [ - { - "_id": "609d8395b789027a3282eb4e", - "library_name": "Test169", - "statement_name": "SDE Ethnicity", - "hqmf_id": "6A4294C0-8C4C-416E-9529-10EC8BA54DBE" - }, - { - "_id": "609d8395b789027a3282eb4f", - "library_name": "Test169", - "statement_name": "SDE Payer", - "hqmf_id": "12215B9D-86A3-49E6-96B1-570CBEF0B861" - }, - { - "_id": "609d8395b789027a3282eb50", - "library_name": "Test169", - "statement_name": "SDE Race", - "hqmf_id": "1B2C8394-1712-4447-B2EE-99C648884048" - }, - { - "_id": "609d8395b789027a3282eb51", - "library_name": "Test169", - "statement_name": "SDE Sex", - "hqmf_id": "2F243956-879E-4BDA-8F38-3693453E4FE6" - } - ] - } - ], - "value_sets": [ - { - "_id": "609d8395b789027a3282eaeb", - "concepts": [ - { - "_id": "609d8395b789027a3282eb52", - "code": "F", - "code_system_name": "AdministrativeGender", - "code_system_oid": "2.16.840.1.113883.5.1", - "code_system_version": "HL7V3.0_2018-08", - "display_name": "Female" - }, - { - "_id": "609d8395b789027a3282eb53", - "code": "M", - "code_system_name": "AdministrativeGender", - "code_system_oid": "2.16.840.1.113883.5.1", - "code_system_version": "HL7V3.0_2018-08", - "display_name": "Male" - } - ], - "display_name": "ONC Administrative Sex", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113762.1.4.1", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaec", - "concepts": [ - { - "_id": "609d8395b789027a3282eb54", - "code": "1002-5", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "American Indian or Alaska Native" - }, - { - "_id": "609d8395b789027a3282eb55", - "code": "2028-9", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Asian" - }, - { - "_id": "609d8395b789027a3282eb56", - "code": "2054-5", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Black or African American" - }, - { - "_id": "609d8395b789027a3282eb57", - "code": "2076-8", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Native Hawaiian or Other Pacific Islander" - }, - { - "_id": "609d8395b789027a3282eb58", - "code": "2106-3", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "White" - }, - { - "_id": "609d8395b789027a3282eb59", - "code": "2131-1", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Other Race" - } - ], - "display_name": "Race", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.114222.4.11.836", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaed", - "concepts": [ - { - "_id": "609d8395b789027a3282eb5a", - "code": "2135-2", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Hispanic or Latino" - }, - { - "_id": "609d8395b789027a3282eb5b", - "code": "2186-5", - "code_system_name": "CDCREC", - "code_system_oid": "2.16.840.1.113883.6.238", - "code_system_version": "1.2", - "display_name": "Not Hispanic or Latino" - } - ], - "display_name": "Ethnicity", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.114222.4.11.837", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaee", - "concepts": [ - { - "_id": "609d8395b789027a3282eb5c", - "code": "1", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "MEDICARE" - }, - { - "_id": "609d8395b789027a3282eb5d", - "code": "11", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare (Managed Care)" - }, - { - "_id": "609d8395b789027a3282eb5e", - "code": "111", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare HMO" - }, - { - "_id": "609d8395b789027a3282eb5f", - "code": "112", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare PPO" - }, - { - "_id": "609d8395b789027a3282eb60", - "code": "113", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare POS" - }, - { - "_id": "609d8395b789027a3282eb61", - "code": "119", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Managed Care Other" - }, - { - "_id": "609d8395b789027a3282eb62", - "code": "12", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare (Non-managed Care)" - }, - { - "_id": "609d8395b789027a3282eb63", - "code": "121", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare FFS" - }, - { - "_id": "609d8395b789027a3282eb64", - "code": "122", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Drug Benefit" - }, - { - "_id": "609d8395b789027a3282eb65", - "code": "123", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Medical Savings Account (MSA)" - }, - { - "_id": "609d8395b789027a3282eb66", - "code": "129", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Non-managed Care Other" - }, - { - "_id": "609d8395b789027a3282eb67", - "code": "13", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Hospice" - }, - { - "_id": "609d8395b789027a3282eb68", - "code": "14", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Dual Eligibility Medicare/Medicaid Organization" - }, - { - "_id": "609d8395b789027a3282eb69", - "code": "19", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Other" - }, - { - "_id": "609d8395b789027a3282eb6a", - "code": "191", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare Pharmacy Benefit Manager" - }, - { - "_id": "609d8395b789027a3282eb6b", - "code": "2", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "MEDICAID" - }, - { - "_id": "609d8395b789027a3282eb6c", - "code": "21", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid (Managed Care)" - }, - { - "_id": "609d8395b789027a3282eb6d", - "code": "211", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid HMO" - }, - { - "_id": "609d8395b789027a3282eb6e", - "code": "212", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid PPO" - }, - { - "_id": "609d8395b789027a3282eb6f", - "code": "213", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid PCCM (Primary Care Case Management)" - }, - { - "_id": "609d8395b789027a3282eb70", - "code": "219", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid Managed Care Other" - }, - { - "_id": "609d8395b789027a3282eb71", - "code": "22", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid (Non-managed Care Plan)" - }, - { - "_id": "609d8395b789027a3282eb72", - "code": "23", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid/SCHIP" - }, - { - "_id": "609d8395b789027a3282eb73", - "code": "25", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid - Out of State" - }, - { - "_id": "609d8395b789027a3282eb74", - "code": "26", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid -- Long Term Care" - }, - { - "_id": "609d8395b789027a3282eb75", - "code": "29", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid Other" - }, - { - "_id": "609d8395b789027a3282eb76", - "code": "291", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid Pharmacy Benefit Manager" - }, - { - "_id": "609d8395b789027a3282eb77", - "code": "299", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicaid - Dental" - }, - { - "_id": "609d8395b789027a3282eb78", - "code": "3", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "OTHER GOVERNMENT (Federal/State/Local) (excluding Department of Corrections)" - }, - { - "_id": "609d8395b789027a3282eb79", - "code": "31", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Department of Defense" - }, - { - "_id": "609d8395b789027a3282eb7a", - "code": "311", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE (CHAMPUS)" - }, - { - "_id": "609d8395b789027a3282eb7b", - "code": "3111", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE Prime--HMO" - }, - { - "_id": "609d8395b789027a3282eb7c", - "code": "3112", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE Extra--PPO" - }, - { - "_id": "609d8395b789027a3282eb7d", - "code": "3113", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE Standard - Fee For Service" - }, - { - "_id": "609d8395b789027a3282eb7e", - "code": "3114", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE For Life--Medicare Supplement" - }, - { - "_id": "609d8395b789027a3282eb7f", - "code": "3115", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE Reserve Select" - }, - { - "_id": "609d8395b789027a3282eb80", - "code": "3116", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Uniformed Services Family Health Plan (USFHP) -- HMO" - }, - { - "_id": "609d8395b789027a3282eb81", - "code": "3119", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Department of Defense - (other)" - }, - { - "_id": "609d8395b789027a3282eb82", - "code": "312", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Military Treatment Facility" - }, - { - "_id": "609d8395b789027a3282eb83", - "code": "3121", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Enrolled Prime--HMO" - }, - { - "_id": "609d8395b789027a3282eb84", - "code": "3122", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Non-enrolled Space Available" - }, - { - "_id": "609d8395b789027a3282eb85", - "code": "3123", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "TRICARE For Life (TFL)" - }, - { - "_id": "609d8395b789027a3282eb86", - "code": "313", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Dental --Stand Alone" - }, - { - "_id": "609d8395b789027a3282eb87", - "code": "32", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Department of Veterans Affairs" - }, - { - "_id": "609d8395b789027a3282eb88", - "code": "321", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Veteran care--Care provided to Veterans" - }, - { - "_id": "609d8395b789027a3282eb89", - "code": "3211", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Direct Care--Care provided in VA facilities" - }, - { - "_id": "609d8395b789027a3282eb8a", - "code": "3212", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indirect Care--Care provided outside VA facilities" - }, - { - "_id": "609d8395b789027a3282eb8b", - "code": "32121", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Fee Basis" - }, - { - "_id": "609d8395b789027a3282eb8c", - "code": "32122", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Foreign Fee/Foreign Medical Program (FMP)" - }, - { - "_id": "609d8395b789027a3282eb8d", - "code": "32123", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Contract Nursing Home/Community Nursing Home" - }, - { - "_id": "609d8395b789027a3282eb8e", - "code": "32124", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "State Veterans Home" - }, - { - "_id": "609d8395b789027a3282eb8f", - "code": "32125", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Sharing Agreements" - }, - { - "_id": "609d8395b789027a3282eb90", - "code": "32126", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Federal Agency" - }, - { - "_id": "609d8395b789027a3282eb91", - "code": "32127", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Dental Care" - }, - { - "_id": "609d8395b789027a3282eb92", - "code": "32128", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Vision Care" - }, - { - "_id": "609d8395b789027a3282eb93", - "code": "322", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Non-veteran care" - }, - { - "_id": "609d8395b789027a3282eb94", - "code": "3221", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Civilian Health and Medical Program for the VA (CHAMPVA)" - }, - { - "_id": "609d8395b789027a3282eb95", - "code": "3222", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Spina Bifida Health Care Program (SB)" - }, - { - "_id": "609d8395b789027a3282eb96", - "code": "3223", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Children of Women Vietnam Veterans (CWVV)" - }, - { - "_id": "609d8395b789027a3282eb97", - "code": "3229", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other non-veteran care" - }, - { - "_id": "609d8395b789027a3282eb98", - "code": "33", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Health Service or Tribe" - }, - { - "_id": "609d8395b789027a3282eb99", - "code": "331", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Health Service -- Regular" - }, - { - "_id": "609d8395b789027a3282eb9a", - "code": "332", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Health Service -- Contract" - }, - { - "_id": "609d8395b789027a3282eb9b", - "code": "333", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Health Service - Managed Care" - }, - { - "_id": "609d8395b789027a3282eb9c", - "code": "334", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indian Tribe - Sponsored Coverage" - }, - { - "_id": "609d8395b789027a3282eb9d", - "code": "34", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "HRSA Program" - }, - { - "_id": "609d8395b789027a3282eb9e", - "code": "341", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Title V (MCH Block Grant)" - }, - { - "_id": "609d8395b789027a3282eb9f", - "code": "342", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Migrant Health Program" - }, - { - "_id": "609d8395b789027a3282eba0", - "code": "343", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Ryan White Act" - }, - { - "_id": "609d8395b789027a3282eba1", - "code": "349", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other" - }, - { - "_id": "609d8395b789027a3282eba2", - "code": "35", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Black Lung" - }, - { - "_id": "609d8395b789027a3282eba3", - "code": "36", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "State Government" - }, - { - "_id": "609d8395b789027a3282eba4", - "code": "361", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "State SCHIP program (codes for individual states)" - }, - { - "_id": "609d8395b789027a3282eba5", - "code": "362", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Specific state programs (list/ local code)" - }, - { - "_id": "609d8395b789027a3282eba6", - "code": "369", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "State, not otherwise specified (other state)" - }, - { - "_id": "609d8395b789027a3282eba7", - "code": "37", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Local Government" - }, - { - "_id": "609d8395b789027a3282eba8", - "code": "371", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Local - Managed care" - }, - { - "_id": "609d8395b789027a3282eba9", - "code": "3711", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "HMO" - }, - { - "_id": "609d8395b789027a3282ebaa", - "code": "3712", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "PPO" - }, - { - "_id": "609d8395b789027a3282ebab", - "code": "3713", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "POS" - }, - { - "_id": "609d8395b789027a3282ebac", - "code": "372", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "FFS/Indemnity" - }, - { - "_id": "609d8395b789027a3282ebad", - "code": "379", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Local, not otherwise specified (other local, county)" - }, - { - "_id": "609d8395b789027a3282ebae", - "code": "38", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Government (Federal, State, Local not specified)" - }, - { - "_id": "609d8395b789027a3282ebaf", - "code": "381", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified managed care" - }, - { - "_id": "609d8395b789027a3282ebb0", - "code": "3811", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - HMO" - }, - { - "_id": "609d8395b789027a3282ebb1", - "code": "3812", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - PPO" - }, - { - "_id": "609d8395b789027a3282ebb2", - "code": "3813", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - POS" - }, - { - "_id": "609d8395b789027a3282ebb3", - "code": "3819", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - not specified managed care" - }, - { - "_id": "609d8395b789027a3282ebb4", - "code": "382", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - FFS" - }, - { - "_id": "609d8395b789027a3282ebb5", - "code": "389", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal, State, Local not specified - Other" - }, - { - "_id": "609d8395b789027a3282ebb6", - "code": "39", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Federal" - }, - { - "_id": "609d8395b789027a3282ebb7", - "code": "391", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Federal Employee Health Plan - Use when known" - }, - { - "_id": "609d8395b789027a3282ebb8", - "code": "4", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "DEPARTMENTS OF CORRECTIONS" - }, - { - "_id": "609d8395b789027a3282ebb9", - "code": "41", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Corrections Federal" - }, - { - "_id": "609d8395b789027a3282ebba", - "code": "42", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Corrections State" - }, - { - "_id": "609d8395b789027a3282ebbb", - "code": "43", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Corrections Local" - }, - { - "_id": "609d8395b789027a3282ebbc", - "code": "44", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Corrections Unknown Level" - }, - { - "_id": "609d8395b789027a3282ebbd", - "code": "5", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "PRIVATE HEALTH INSURANCE" - }, - { - "_id": "609d8395b789027a3282ebbe", - "code": "51", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Managed Care (Private)" - }, - { - "_id": "609d8395b789027a3282ebbf", - "code": "511", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - HMO" - }, - { - "_id": "609d8395b789027a3282ebc0", - "code": "512", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - PPO" - }, - { - "_id": "609d8395b789027a3282ebc1", - "code": "513", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - POS" - }, - { - "_id": "609d8395b789027a3282ebc2", - "code": "514", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Exclusive Provider Organization" - }, - { - "_id": "609d8395b789027a3282ebc3", - "code": "515", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Gatekeeper PPO (GPPO)" - }, - { - "_id": "609d8395b789027a3282ebc4", - "code": "516", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - Pharmacy Benefit Manager" - }, - { - "_id": "609d8395b789027a3282ebc5", - "code": "517", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Managed Care - Dental" - }, - { - "_id": "609d8395b789027a3282ebc6", - "code": "519", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Managed Care, Other (non HMO)" - }, - { - "_id": "609d8395b789027a3282ebc7", - "code": "52", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Private Health Insurance - Indemnity" - }, - { - "_id": "609d8395b789027a3282ebc8", - "code": "521", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Commercial Indemnity" - }, - { - "_id": "609d8395b789027a3282ebc9", - "code": "522", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Self-insured (ERISA) Administrative Services Only (ASO) plan" - }, - { - "_id": "609d8395b789027a3282ebca", - "code": "523", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Medicare supplemental policy (as second payer)" - }, - { - "_id": "609d8395b789027a3282ebcb", - "code": "524", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Indemnity Insurance - Dental" - }, - { - "_id": "609d8395b789027a3282ebcc", - "code": "529", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Private health insurance--other commercial Indemnity" - }, - { - "_id": "609d8395b789027a3282ebcd", - "code": "53", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Managed Care (private) or private health insurance (indemnity), not otherwise specified" - }, - { - "_id": "609d8395b789027a3282ebce", - "code": "54", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Organized Delivery System" - }, - { - "_id": "609d8395b789027a3282ebcf", - "code": "55", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Small Employer Purchasing Group" - }, - { - "_id": "609d8395b789027a3282ebd0", - "code": "56", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Specialized Stand Alone Plan" - }, - { - "_id": "609d8395b789027a3282ebd1", - "code": "561", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Dental" - }, - { - "_id": "609d8395b789027a3282ebd2", - "code": "562", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Vision" - }, - { - "_id": "609d8395b789027a3282ebd3", - "code": "59", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Private Insurance" - }, - { - "_id": "609d8395b789027a3282ebd4", - "code": "6", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BLUE CROSS/BLUE SHIELD" - }, - { - "_id": "609d8395b789027a3282ebd5", - "code": "61", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care" - }, - { - "_id": "609d8395b789027a3282ebd6", - "code": "611", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care -- HMO" - }, - { - "_id": "609d8395b789027a3282ebd7", - "code": "612", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care -- PPO" - }, - { - "_id": "609d8395b789027a3282ebd8", - "code": "613", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care -- POS" - }, - { - "_id": "609d8395b789027a3282ebd9", - "code": "614", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care - Dental" - }, - { - "_id": "609d8395b789027a3282ebda", - "code": "619", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Managed Care -- Other" - }, - { - "_id": "609d8395b789027a3282ebdb", - "code": "62", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Insurance Indemnity" - }, - { - "_id": "609d8395b789027a3282ebdc", - "code": "621", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Indemnity" - }, - { - "_id": "609d8395b789027a3282ebdd", - "code": "622", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Self-insured (ERISA) Administrative Services Only (ASO)Plan" - }, - { - "_id": "609d8395b789027a3282ebde", - "code": "623", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Medicare Supplemental Plan" - }, - { - "_id": "609d8395b789027a3282ebdf", - "code": "629", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "BC Indemnity - Dental" - }, - { - "_id": "609d8395b789027a3282ebe0", - "code": "7", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "MANAGED CARE, UNSPECIFIED (to be used only if one can't distinguish public from private)" - }, - { - "_id": "609d8395b789027a3282ebe1", - "code": "71", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "HMO" - }, - { - "_id": "609d8395b789027a3282ebe2", - "code": "72", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "PPO" - }, - { - "_id": "609d8395b789027a3282ebe3", - "code": "73", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "POS" - }, - { - "_id": "609d8395b789027a3282ebe4", - "code": "79", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other Managed Care" - }, - { - "_id": "609d8395b789027a3282ebe5", - "code": "8", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "NO PAYMENT from an Organization/Agency/Program/Private Payer Listed" - }, - { - "_id": "609d8395b789027a3282ebe6", - "code": "81", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Self-pay (Includes applicants for insurance and Medicaid applicants)" - }, - { - "_id": "609d8395b789027a3282ebe7", - "code": "82", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "No Charge" - }, - { - "_id": "609d8395b789027a3282ebe8", - "code": "821", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Charity" - }, - { - "_id": "609d8395b789027a3282ebe9", - "code": "822", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Professional Courtesy" - }, - { - "_id": "609d8395b789027a3282ebea", - "code": "823", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Research/Clinical Trial" - }, - { - "_id": "609d8395b789027a3282ebeb", - "code": "83", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Refusal to Pay/Bad Debt" - }, - { - "_id": "609d8395b789027a3282ebec", - "code": "84", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Hill Burton Free Care" - }, - { - "_id": "609d8395b789027a3282ebed", - "code": "85", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Research/Donor" - }, - { - "_id": "609d8395b789027a3282ebee", - "code": "89", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "No Payment, Other" - }, - { - "_id": "609d8395b789027a3282ebef", - "code": "9", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "MISCELLANEOUS/OTHER" - }, - { - "_id": "609d8395b789027a3282ebf0", - "code": "91", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Foreign National" - }, - { - "_id": "609d8395b789027a3282ebf1", - "code": "92", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other (Non-government)" - }, - { - "_id": "609d8395b789027a3282ebf2", - "code": "93", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Disability Insurance" - }, - { - "_id": "609d8395b789027a3282ebf3", - "code": "94", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Long-term Care Insurance" - }, - { - "_id": "609d8395b789027a3282ebf4", - "code": "95", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Compensation" - }, - { - "_id": "609d8395b789027a3282ebf5", - "code": "951", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Comp HMO" - }, - { - "_id": "609d8395b789027a3282ebf6", - "code": "953", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Comp Fee-for-Service" - }, - { - "_id": "609d8395b789027a3282ebf7", - "code": "954", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Comp Other Managed Care" - }, - { - "_id": "609d8395b789027a3282ebf8", - "code": "959", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Worker's Comp, Other unspecified" - }, - { - "_id": "609d8395b789027a3282ebf9", - "code": "96", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Auto Insurance (includes no fault)" - }, - { - "_id": "609d8395b789027a3282ebfa", - "code": "97", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Legal Liability / Liability Insurance" - }, - { - "_id": "609d8395b789027a3282ebfb", - "code": "98", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Other specified but not otherwise classifiable (includes Hospice - Unspecified plan)" - }, - { - "_id": "609d8395b789027a3282ebfc", - "code": "99", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "No Typology Code available for payment source" - }, - { - "_id": "609d8395b789027a3282ebfd", - "code": "9999", - "code_system_name": "SOP", - "code_system_oid": "2.16.840.1.113883.3.221.5", - "code_system_version": "8.0", - "display_name": "Unavailable / No Payer Specified / Blank" - } - ], - "display_name": "Payer", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.114222.4.11.3591", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaef", - "concepts": [ - { - "_id": "609d8395b789027a3282ebfe", - "code": "1000048", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin Hydrochloride 10 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ebff", - "code": "1000054", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin Hydrochloride 10 MG/ML Oral Solution" - }, - { - "_id": "609d8395b789027a3282ec00", - "code": "1000058", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin Hydrochloride 100 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec01", - "code": "1000064", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin Hydrochloride 150 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec02", - "code": "1000070", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin Hydrochloride 25 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec03", - "code": "1000076", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin Hydrochloride 50 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec04", - "code": "1000091", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin Hydrochloride 50 MG/ML Topical Cream" - }, - { - "_id": "609d8395b789027a3282ec05", - "code": "1000097", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin Hydrochloride 75 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec06", - "code": "104837", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Isocarboxazid 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec07", - "code": "1098649", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nefazodone hydrochloride 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec08", - "code": "1098666", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nefazodone hydrochloride 150 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec09", - "code": "1098670", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nefazodone hydrochloride 200 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec0a", - "code": "1098674", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nefazodone hydrochloride 250 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec0b", - "code": "1098678", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nefazodone hydrochloride 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec0c", - "code": "1099288", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Desipramine Hydrochloride 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec0d", - "code": "1099292", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Desipramine Hydrochloride 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec0e", - "code": "1099296", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Desipramine Hydrochloride 150 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec0f", - "code": "1099300", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Desipramine Hydrochloride 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec10", - "code": "1099304", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Desipramine Hydrochloride 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec11", - "code": "1099316", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Desipramine Hydrochloride 75 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec12", - "code": "1190110", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 60 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec13", - "code": "1232585", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Bupropion Hydrochloride 450 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec14", - "code": "1298857", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Maprotiline Hydrochloride 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec15", - "code": "1298861", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Maprotiline Hydrochloride 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec16", - "code": "1298870", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Maprotiline Hydrochloride 75 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec17", - "code": "1738483", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Paroxetine Hydrochloride 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec18", - "code": "1738495", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Paroxetine Hydrochloride 20 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec19", - "code": "1738503", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Paroxetine Hydrochloride 30 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec1a", - "code": "1738511", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Paroxetine Hydrochloride 40 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec1b", - "code": "1738515", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Paroxetine mesylate 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec1c", - "code": "1738519", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Paroxetine mesylate 20 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec1d", - "code": "1738523", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Paroxetine mesylate 30 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec1e", - "code": "1738527", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Paroxetine mesylate 40 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec1f", - "code": "197363", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amoxapine 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec20", - "code": "197364", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amoxapine 150 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec21", - "code": "197365", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amoxapine 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec22", - "code": "197366", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amoxapine 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec23", - "code": "197889", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Carbonate 300 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec24", - "code": "197890", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Carbonate 300 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec25", - "code": "197891", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Carbonate 300 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec26", - "code": "197892", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Carbonate 450 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec27", - "code": "197893", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Carbonate 600 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec28", - "code": "198045", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nortriptyline 10 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec29", - "code": "198046", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nortriptyline 50 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec2a", - "code": "198047", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nortriptyline 75 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec2b", - "code": "199283", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nortriptyline 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec2c", - "code": "199324", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Carbonate 250 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec2d", - "code": "199461", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Dothiepin 25 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec2e", - "code": "199462", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Dothiepin 75 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec2f", - "code": "199484", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Mianserin 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec30", - "code": "199485", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Mianserin 20 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec31", - "code": "199487", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Moclobemide 150 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec32", - "code": "199488", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Moclobemide 300 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec33", - "code": "199761", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Carbonate 400 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec34", - "code": "199820", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Trimipramine 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec35", - "code": "200371", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Citalopram 20 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec36", - "code": "248642", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 20 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec37", - "code": "251200", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Sertraline 200 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec38", - "code": "283406", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Mirtazapine 15 MG Disintegrating Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec39", - "code": "283407", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Mirtazapine 30 MG Disintegrating Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec3a", - "code": "283485", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Mirtazapine 45 MG Disintegrating Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec3b", - "code": "283672", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Citalopram 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec3c", - "code": "309313", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Citalopram 2 MG/ML Oral Solution" - }, - { - "_id": "609d8395b789027a3282ec3d", - "code": "309314", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Citalopram 40 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec3e", - "code": "310384", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 10 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec3f", - "code": "310385", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 20 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec40", - "code": "310386", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 4 MG/ML Oral Solution" - }, - { - "_id": "609d8395b789027a3282ec41", - "code": "311355", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Carbonate 150 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec42", - "code": "311725", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Mirtazapine 15 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec43", - "code": "311726", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Mirtazapine 45 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec44", - "code": "312036", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nortriptyline 2 MG/ML Oral Solution" - }, - { - "_id": "609d8395b789027a3282ec45", - "code": "312242", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Paroxetine Hydrochloride 2 MG/ML Oral Suspension" - }, - { - "_id": "609d8395b789027a3282ec46", - "code": "312347", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Phenelzine 15 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec47", - "code": "312938", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Sertraline 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec48", - "code": "312940", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Sertraline 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec49", - "code": "312941", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Sertraline 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec4a", - "code": "313447", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Tranylcypromine 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec4b", - "code": "313496", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Trimipramine 100 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec4c", - "code": "313497", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Trimipramine 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec4d", - "code": "313498", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Trimipramine 25 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec4e", - "code": "313499", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Trimipramine 50 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec4f", - "code": "313580", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "venlafaxine 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec50", - "code": "313581", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR venlafaxine 150 MG Extended Release Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec51", - "code": "313582", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "venlafaxine 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec52", - "code": "313583", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR venlafaxine 37.5 MG Extended Release Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec53", - "code": "313584", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "venlafaxine 37.5 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec54", - "code": "313585", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR venlafaxine 75 MG Extended Release Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec55", - "code": "313586", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "venlafaxine 75 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec56", - "code": "313989", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 40 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec57", - "code": "313990", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec58", - "code": "313995", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 90 MG Delayed Release Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec59", - "code": "314111", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Mirtazapine 30 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec5a", - "code": "314277", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "venlafaxine 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec5b", - "code": "317136", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Nortriptyline 25 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec5c", - "code": "349332", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Escitalopram 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec5d", - "code": "351249", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Escitalopram 5 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec5e", - "code": "351250", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Escitalopram 20 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec5f", - "code": "351285", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Escitalopram 1 MG/ML Oral Solution" - }, - { - "_id": "609d8395b789027a3282ec60", - "code": "403969", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 25 MG / olanzapine 6 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec61", - "code": "403970", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 25 MG / olanzapine 12 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec62", - "code": "403971", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 50 MG / olanzapine 12 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec63", - "code": "403972", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 50 MG / olanzapine 6 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec64", - "code": "476809", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Mirtazapine 7.5 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec65", - "code": "596926", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "duloxetine 20 MG Delayed Release Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec66", - "code": "596930", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "duloxetine 30 MG Delayed Release Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec67", - "code": "596934", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "duloxetine 60 MG Delayed Release Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec68", - "code": "608328", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "rasagiline 1 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec69", - "code": "636664", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "rasagiline 0.5 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec6a", - "code": "721787", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluoxetine 25 MG / olanzapine 3 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec6b", - "code": "746073", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Aspartate 5 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec6c", - "code": "749153", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Lithium Aspartate 20 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec6d", - "code": "756059", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "lithium citrate 60 MG/ML Oral Solution" - }, - { - "_id": "609d8395b789027a3282ec6e", - "code": "790264", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Desvenlafaxine 100 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec6f", - "code": "790288", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Desvenlafaxine 50 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec70", - "code": "794947", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Sertraline 150 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec71", - "code": "808744", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR venlafaxine 150 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec72", - "code": "808748", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR venlafaxine 225 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec73", - "code": "808751", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR venlafaxine 37.5 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec74", - "code": "808753", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR venlafaxine 75 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec75", - "code": "833135", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Milnacipran hydrochloride 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec76", - "code": "833141", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Milnacipran hydrochloride 12.5 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec77", - "code": "833144", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Milnacipran hydrochloride 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec78", - "code": "833147", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Milnacipran hydrochloride 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec79", - "code": "835564", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Imipramine Hydrochloride 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec7a", - "code": "835568", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Imipramine Hydrochloride 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec7b", - "code": "835572", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Imipramine pamoate 75 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec7c", - "code": "835577", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Imipramine pamoate 150 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec7d", - "code": "835589", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Imipramine pamoate 125 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec7e", - "code": "835591", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Imipramine pamoate 100 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec7f", - "code": "835593", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Imipramine Hydrochloride 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec80", - "code": "846386", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "lithium orotate 5 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec81", - "code": "856364", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Trazodone Hydrochloride 150 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec82", - "code": "856369", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Trazodone Hydrochloride 300 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec83", - "code": "856373", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Trazodone Hydrochloride 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec84", - "code": "856377", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Trazodone Hydrochloride 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec85", - "code": "856706", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 10 MG / Perphenazine 2 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec86", - "code": "856720", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 10 MG / Perphenazine 4 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec87", - "code": "856762", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec88", - "code": "856769", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 12.5 MG / Chlordiazepoxide 5 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec89", - "code": "856773", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 150 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec8a", - "code": "856783", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec8b", - "code": "856792", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 25 MG / Chlordiazepoxide 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec8c", - "code": "856797", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 25 MG / Perphenazine 2 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec8d", - "code": "856825", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 25 MG / Perphenazine 4 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec8e", - "code": "856834", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec8f", - "code": "856840", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 50 MG / Perphenazine 4 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec90", - "code": "856845", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec91", - "code": "856853", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Amitriptyline Hydrochloride 75 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec92", - "code": "857291", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clomipramine Hydrochloride 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec93", - "code": "857296", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clomipramine Hydrochloride 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec94", - "code": "857297", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clomipramine Hydrochloride 25 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec95", - "code": "857301", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clomipramine Hydrochloride 50 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec96", - "code": "857305", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clomipramine Hydrochloride 75 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec97", - "code": "857315", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clomipramine Hydrochloride 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec98", - "code": "859186", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "selegiline hydrochloride 5 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282ec99", - "code": "859190", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "selegiline hydrochloride 1.25 MG Disintegrating Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec9a", - "code": "859193", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "selegiline hydrochloride 5 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ec9b", - "code": "861064", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Sertraline 20 MG/ML Oral Solution" - }, - { - "_id": "609d8395b789027a3282ec9c", - "code": "865206", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Selegiline 0.25 MG/HR Transdermal System" - }, - { - "_id": "609d8395b789027a3282ec9d", - "code": "865210", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Selegiline 0.375 MG/HR Transdermal System" - }, - { - "_id": "609d8395b789027a3282ec9e", - "code": "865214", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Selegiline 0.5 MG/HR Transdermal System" - }, - { - "_id": "609d8395b789027a3282ec9f", - "code": "898697", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Trazodone Hydrochloride 150 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eca0", - "code": "898704", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Trazodone Hydrochloride 300 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eca1", - "code": "903873", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Fluvoxamine Maleate 100 MG Extended Release Oral Capsule" - }, - { - "_id": "609d8395b789027a3282eca2", - "code": "903879", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Fluvoxamine Maleate 150 MG Extended Release Oral Capsule" - }, - { - "_id": "609d8395b789027a3282eca3", - "code": "903884", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluvoxamine Maleate 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eca4", - "code": "903887", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluvoxamine Maleate 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eca5", - "code": "903891", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Fluvoxamine Maleate 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eca6", - "code": "905168", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Protriptyline Hydrochloride 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eca7", - "code": "905172", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Protriptyline Hydrochloride 5 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eca8", - "code": "966787", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin 3 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eca9", - "code": "966793", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Doxepin 6 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecaa", - "code": "993503", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "12 HR Bupropion Hydrochloride 100 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecab", - "code": "993518", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "12 HR Bupropion Hydrochloride 150 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecac", - "code": "993536", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "12 HR Bupropion Hydrochloride 200 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecad", - "code": "993541", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Bupropion Hydrochloride 150 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecae", - "code": "993550", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Bupropion hydrobromide 174 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecaf", - "code": "993557", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Bupropion Hydrochloride 300 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecb0", - "code": "993567", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Bupropion hydrobromide 348 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecb1", - "code": "993681", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "24 HR Bupropion hydrobromide 522 MG Extended Release Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecb2", - "code": "993687", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Bupropion Hydrochloride 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ecb3", - "code": "993691", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Bupropion Hydrochloride 75 MG Oral Tablet" - } - ], - "display_name": "BH Antidepressant Medication", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.1257.1.972", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaf0", - "concepts": [ - { - "_id": "609d8395b789027a3282ecb4", - "code": "105355005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Volatile drug screen (procedure)" - }, - { - "_id": "609d8395b789027a3282ecb5", - "code": "117251007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Substance Abuse and Mental Health Services Administration drug assay screening method (procedure)" - }, - { - "_id": "609d8395b789027a3282ecb6", - "code": "171208001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Alcohol consumption screening (procedure)" - }, - { - "_id": "609d8395b789027a3282ecb7", - "code": "252170002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Volatile substance screening (procedure)" - }, - { - "_id": "609d8395b789027a3282ecb8", - "code": "273347006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Cage questionnaire (assessment scale)" - }, - { - "_id": "609d8395b789027a3282ecb9", - "code": "408942001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Drug abuse prevention assessment (procedure)" - }, - { - "_id": "609d8395b789027a3282ecba", - "code": "408946003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Alcohol abuse prevention assessment (procedure)" - }, - { - "_id": "609d8395b789027a3282ecbb", - "code": "428211000124100", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Assessment of substance use (procedure)" - }, - { - "_id": "609d8395b789027a3282ecbc", - "code": "99408", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Alcohol and/or substance (other than tobacco) abuse structured screening (eg, AUDIT, DAST), and brief intervention (SBI) services; 15 to 30 minutes" - }, - { - "_id": "609d8395b789027a3282ecbd", - "code": "99409", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Alcohol and/or substance (other than tobacco) abuse structured screening (eg, AUDIT, DAST), and brief intervention (SBI) services; greater than 30 minutes" - }, - { - "_id": "609d8395b789027a3282ecbe", - "code": "H0001", - "code_system_name": "HCPCS", - "code_system_oid": "2.16.840.1.113883.6.285", - "code_system_version": "2019", - "display_name": "Alcohol and/or drug assessment" - }, - { - "_id": "609d8395b789027a3282ecbf", - "code": "H0049", - "code_system_name": "HCPCS", - "code_system_oid": "2.16.840.1.113883.6.285", - "code_system_version": "2019", - "display_name": "Alcohol and/or drug screening" - } - ], - "display_name": "BH Assessment for Alcohol or Other Drugs", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.1257.1.1604", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaf1", - "concepts": [ - { - "_id": "609d8395b789027a3282ecc0", - "code": "10875004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe mixed bipolar I disorder with psychotic features, mood-incongruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ecc1", - "code": "10981006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe mixed bipolar I disorder with psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ecc2", - "code": "1196001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic bipolar II disorder, most recent episode major depressive (disorder)" - }, - { - "_id": "609d8395b789027a3282ecc3", - "code": "13313007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild bipolar disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ecc4", - "code": "13581000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar I disorder, single manic episode with psychotic features, mood-congruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ecc5", - "code": "13746004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ecc6", - "code": "14495005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar I disorder, single manic episode without psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ecc7", - "code": "1499003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, single manic episode with postpartum onset (disorder)" - }, - { - "_id": "609d8395b789027a3282ecc8", - "code": "162004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe manic bipolar I disorder without psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ecc9", - "code": "16295005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar II disorder, most recent episode major depressive (disorder)" - }, - { - "_id": "609d8395b789027a3282ecca", - "code": "16506000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mixed bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282eccb", - "code": "17782008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, most recent episode manic with catatonic features (disorder)" - }, - { - "_id": "609d8395b789027a3282eccc", - "code": "191583000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Single manic episode, mild (disorder)" - }, - { - "_id": "609d8395b789027a3282eccd", - "code": "191584006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Single manic episode, moderate (disorder)" - }, - { - "_id": "609d8395b789027a3282ecce", - "code": "191586008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Single manic episode, severe, with psychosis (disorder)" - }, - { - "_id": "609d8395b789027a3282eccf", - "code": "191590005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent manic episodes (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd0", - "code": "191592002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent manic episodes, mild (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd1", - "code": "191593007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent manic episodes, moderate (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd2", - "code": "191595000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent manic episodes, severe, with psychosis (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd3", - "code": "191618007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar affective disorder, current episode manic (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd4", - "code": "191620005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar affective disorder, currently manic, mild (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd5", - "code": "191621009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar affective disorder, currently manic, moderate (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd6", - "code": "191623007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar affective disorder, currently manic, severe, with psychosis (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd7", - "code": "191627008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar affective disorder, current episode depression (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd8", - "code": "191629006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar affective disorder, currently depressed, mild (disorder)" - }, - { - "_id": "609d8395b789027a3282ecd9", - "code": "191630001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar affective disorder, currently depressed, moderate (disorder)" - }, - { - "_id": "609d8395b789027a3282ecda", - "code": "191632009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-03", - "display_name": "Bipolar affective disorder, currently depressed, severe, with psychosis (disorder)" - }, - { - "_id": "609d8395b789027a3282ecdb", - "code": "191636007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mixed bipolar affective disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ecdc", - "code": "191638008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mixed bipolar affective disorder, mild (disorder)" - }, - { - "_id": "609d8395b789027a3282ecdd", - "code": "191639000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mixed bipolar affective disorder, moderate (disorder)" - }, - { - "_id": "609d8395b789027a3282ecde", - "code": "191641004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mixed bipolar affective disorder, severe, with psychosis (disorder)" - }, - { - "_id": "609d8395b789027a3282ecdf", - "code": "191658009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Atypical manic disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ece0", - "code": "192362008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar affective disorder, current episode mixed (disorder)" - }, - { - "_id": "609d8395b789027a3282ece1", - "code": "19300006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar II disorder, most recent episode major depressive with psychotic features, mood-congruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ece2", - "code": "20960007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar II disorder, most recent episode major depressive with psychotic features, mood-incongruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ece3", - "code": "21900002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, most recent episode depressed with catatonic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ece4", - "code": "22407005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar II disorder, most recent episode major depressive with catatonic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ece5", - "code": "231444002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Organic bipolar disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ece6", - "code": "231494001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mania (disorder)" - }, - { - "_id": "609d8395b789027a3282ece7", - "code": "231495000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Manic stupor (disorder)" - }, - { - "_id": "609d8395b789027a3282ece8", - "code": "231496004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Hypomania (disorder)" - }, - { - "_id": "609d8395b789027a3282ece9", - "code": "26203008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe depressed bipolar I disorder with psychotic features, mood-incongruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ecea", - "code": "26530004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar disorder with psychotic features, mood-incongruent (disorder)" - }, - { - "_id": "609d8395b789027a3282eceb", - "code": "268619003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Manic disorder, single episode (disorder)" - }, - { - "_id": "609d8395b789027a3282ecec", - "code": "28663008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe manic bipolar I disorder with psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282eced", - "code": "28884001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate bipolar I disorder, single manic episode (disorder)" - }, - { - "_id": "609d8395b789027a3282ecee", - "code": "29929003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, most recent episode depressed with atypical features (disorder)" - }, - { - "_id": "609d8395b789027a3282ecef", - "code": "30520009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar II disorder, most recent episode major depressive with psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf0", - "code": "30687003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar II disorder, most recent episode major depressive with postpartum onset (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf1", - "code": "31446002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, most recent episode hypomanic (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf2", - "code": "33380008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe manic bipolar I disorder with psychotic features, mood-incongruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf3", - "code": "34315001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar II disorder, most recent episode major depressive with melancholic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf4", - "code": "35481005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mixed bipolar I disorder in remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf5", - "code": "35722002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar II disorder, most recent episode major depressive, in remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf6", - "code": "35846004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate bipolar II disorder, most recent episode major depressive (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf7", - "code": "36583000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mixed bipolar I disorder in partial remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf8", - "code": "371596008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ecf9", - "code": "371599001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ecfa", - "code": "371600003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ecfb", - "code": "371604007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar II disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ecfc", - "code": "40926005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate mixed bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ecfd", - "code": "41552001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild bipolar I disorder, single manic episode (disorder)" - }, - { - "_id": "609d8395b789027a3282ecfe", - "code": "41832009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar I disorder, single manic episode with psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ecff", - "code": "41932008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Amok (disorder)" - }, - { - "_id": "609d8395b789027a3282ed00", - "code": "43568002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar II disorder, most recent episode major depressive with atypical features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed01", - "code": "43769008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild mixed bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed02", - "code": "4441000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar disorder with psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed03", - "code": "45479006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Manic bipolar I disorder in remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed04", - "code": "46229002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe mixed bipolar I disorder without psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed05", - "code": "48937005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar II disorder, most recent episode hypomanic (disorder)" - }, - { - "_id": "609d8395b789027a3282ed06", - "code": "49468007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Depressed bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed07", - "code": "49512000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Depressed bipolar I disorder in partial remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed08", - "code": "51637008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic bipolar I disorder, most recent episode depressed (disorder)" - }, - { - "_id": "609d8395b789027a3282ed09", - "code": "53049002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar disorder without psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed0a", - "code": "53607008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Depressed bipolar I disorder in remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed0b", - "code": "54761006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe depressed bipolar I disorder with psychotic features, mood-congruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed0c", - "code": "55516002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, most recent episode manic with postpartum onset (disorder)" - }, - { - "_id": "609d8395b789027a3282ed0d", - "code": "5703000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar disorder in partial remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed0e", - "code": "59617007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe depressed bipolar I disorder with psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed0f", - "code": "61403008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe depressed bipolar I disorder without psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed10", - "code": "63249007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Manic bipolar I disorder in partial remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed11", - "code": "64731001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe mixed bipolar I disorder with psychotic features, mood-congruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed12", - "code": "65042007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, most recent episode mixed with postpartum onset (disorder)" - }, - { - "_id": "609d8395b789027a3282ed13", - "code": "66631006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate depressed bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed14", - "code": "67002003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar II disorder, most recent episode major depressive, in partial remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed15", - "code": "68569003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Manic bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed16", - "code": "70546001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar disorder with psychotic features, mood-congruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed17", - "code": "71294008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild bipolar II disorder, most recent episode major depressive (disorder)" - }, - { - "_id": "609d8395b789027a3282ed18", - "code": "71984005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild manic bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed19", - "code": "73471000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, most recent episode mixed with catatonic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed1a", - "code": "74686005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild depressed bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed1b", - "code": "75360000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, single manic episode, in remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed1c", - "code": "75752004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, most recent episode depressed with melancholic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed1d", - "code": "76105009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Cyclothymia (disorder)" - }, - { - "_id": "609d8395b789027a3282ed1e", - "code": "78269000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, single manic episode, in partial remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed1f", - "code": "78640000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe manic bipolar I disorder with psychotic features, mood-congruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed20", - "code": "79584002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate bipolar disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed21", - "code": "81319007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar II disorder, most recent episode major depressive without psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed22", - "code": "82998009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate manic bipolar I disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed23", - "code": "83225003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar II disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed24", - "code": "85248005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar disorder in remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed25", - "code": "86058007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe bipolar I disorder, single manic episode with psychotic features, mood-incongruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed26", - "code": "87203005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, most recent episode depressed with postpartum onset (disorder)" - }, - { - "_id": "609d8395b789027a3282ed27", - "code": "87950005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, single manic episode with catatonic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed28", - "code": "9340000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bipolar I disorder, single manic episode (disorder)" - }, - { - "_id": "609d8395b789027a3282ed29", - "code": "F30.10", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Manic episode without psychotic symptoms, unspecified" - }, - { - "_id": "609d8395b789027a3282ed2a", - "code": "F30.11", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Manic episode without psychotic symptoms, mild" - }, - { - "_id": "609d8395b789027a3282ed2b", - "code": "F30.12", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Manic episode without psychotic symptoms, moderate" - }, - { - "_id": "609d8395b789027a3282ed2c", - "code": "F30.13", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Manic episode, severe, without psychotic symptoms" - }, - { - "_id": "609d8395b789027a3282ed2d", - "code": "F30.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Manic episode, severe with psychotic symptoms" - }, - { - "_id": "609d8395b789027a3282ed2e", - "code": "F30.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Manic episode in partial remission" - }, - { - "_id": "609d8395b789027a3282ed2f", - "code": "F30.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other manic episodes" - }, - { - "_id": "609d8395b789027a3282ed30", - "code": "F30.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Manic episode, unspecified" - }, - { - "_id": "609d8395b789027a3282ed31", - "code": "F31.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode hypomanic" - }, - { - "_id": "609d8395b789027a3282ed32", - "code": "F31.10", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode manic without psychotic features, unspecified" - }, - { - "_id": "609d8395b789027a3282ed33", - "code": "F31.11", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode manic without psychotic features, mild" - }, - { - "_id": "609d8395b789027a3282ed34", - "code": "F31.12", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode manic without psychotic features, moderate" - }, - { - "_id": "609d8395b789027a3282ed35", - "code": "F31.13", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode manic without psychotic features, severe" - }, - { - "_id": "609d8395b789027a3282ed36", - "code": "F31.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode manic severe with psychotic features" - }, - { - "_id": "609d8395b789027a3282ed37", - "code": "F31.30", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode depressed, mild or moderate severity, unspecified" - }, - { - "_id": "609d8395b789027a3282ed38", - "code": "F31.31", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode depressed, mild" - }, - { - "_id": "609d8395b789027a3282ed39", - "code": "F31.32", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode depressed, moderate" - }, - { - "_id": "609d8395b789027a3282ed3a", - "code": "F31.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode depressed, severe, without psychotic features" - }, - { - "_id": "609d8395b789027a3282ed3b", - "code": "F31.5", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode depressed, severe, with psychotic features" - }, - { - "_id": "609d8395b789027a3282ed3c", - "code": "F31.60", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode mixed, unspecified" - }, - { - "_id": "609d8395b789027a3282ed3d", - "code": "F31.61", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode mixed, mild" - }, - { - "_id": "609d8395b789027a3282ed3e", - "code": "F31.62", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode mixed, moderate" - }, - { - "_id": "609d8395b789027a3282ed3f", - "code": "F31.63", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode mixed, severe, without psychotic features" - }, - { - "_id": "609d8395b789027a3282ed40", - "code": "F31.64", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, current episode mixed, severe, with psychotic features" - }, - { - "_id": "609d8395b789027a3282ed41", - "code": "F31.70", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, currently in remission, most recent episode unspecified" - }, - { - "_id": "609d8395b789027a3282ed42", - "code": "F31.71", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, in partial remission, most recent episode hypomanic" - }, - { - "_id": "609d8395b789027a3282ed43", - "code": "F31.73", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, in partial remission, most recent episode manic" - }, - { - "_id": "609d8395b789027a3282ed44", - "code": "F31.75", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, in partial remission, most recent episode depressed" - }, - { - "_id": "609d8395b789027a3282ed45", - "code": "F31.77", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, in partial remission, most recent episode mixed" - }, - { - "_id": "609d8395b789027a3282ed46", - "code": "F31.81", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar II disorder" - }, - { - "_id": "609d8395b789027a3282ed47", - "code": "F31.89", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other bipolar disorder" - }, - { - "_id": "609d8395b789027a3282ed48", - "code": "F31.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Bipolar disorder, unspecified" - }, - { - "_id": "609d8395b789027a3282ed49", - "code": "F34.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Cyclothymic disorder" - }, - { - "_id": "609d8395b789027a3282ed4a", - "code": "F34.89", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified persistent mood disorders" - } - ], - "display_name": "BH Condition Involving Bipolar Disorder", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.1257.1.1504", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaf2", - "concepts": [ - { - "_id": "609d8395b789027a3282ed4b", - "code": "14183003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic major depressive disorder, single episode (disorder)" - }, - { - "_id": "609d8395b789027a3282ed4c", - "code": "15193003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe recurrent major depression with psychotic features, mood-incongruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed4d", - "code": "15639000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate major depression, single episode (disorder)" - }, - { - "_id": "609d8395b789027a3282ed4e", - "code": "18818009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate recurrent major depression (disorder)" - }, - { - "_id": "609d8395b789027a3282ed4f", - "code": "191610000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depressive episodes, mild (disorder)" - }, - { - "_id": "609d8395b789027a3282ed50", - "code": "191611001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depressive episodes, moderate (disorder)" - }, - { - "_id": "609d8395b789027a3282ed51", - "code": "191613003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depressive episodes, severe, with psychosis (disorder)" - }, - { - "_id": "609d8395b789027a3282ed52", - "code": "19527009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Single episode of major depression in full remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed53", - "code": "20250007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe major depression, single episode, with psychotic features, mood-incongruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed54", - "code": "25922000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depressive disorder, single episode with postpartum onset (disorder)" - }, - { - "_id": "609d8395b789027a3282ed55", - "code": "2618002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Chronic recurrent major depressive disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed56", - "code": "268621008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depressive episodes (disorder)" - }, - { - "_id": "609d8395b789027a3282ed57", - "code": "28475009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe recurrent major depression with psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed58", - "code": "30605009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depression in partial remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed59", - "code": "319768000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depressive disorder with melancholic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed5a", - "code": "320751009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depression, melancholic type (disorder)" - }, - { - "_id": "609d8395b789027a3282ed5b", - "code": "33078009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe recurrent major depression with psychotic features, mood-congruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed5c", - "code": "33135002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depression in partial remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed5d", - "code": "33736005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe major depression with psychotic features, mood-congruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed5e", - "code": "35489007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Depressive disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed5f", - "code": "36474008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe recurrent major depression without psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed60", - "code": "36923009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depression, single episode (disorder)" - }, - { - "_id": "609d8395b789027a3282ed61", - "code": "370143000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depressive disorder (disorder)" - }, - { - "_id": "609d8395b789027a3282ed62", - "code": "38694004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depressive disorder with atypical features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed63", - "code": "39809009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depressive disorder with catatonic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed64", - "code": "40379007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild recurrent major depression (disorder)" - }, - { - "_id": "609d8395b789027a3282ed65", - "code": "42810003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depression in remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed66", - "code": "42925002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depressive disorder, single episode with atypical features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed67", - "code": "430852001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe major depression, single episode, with psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed68", - "code": "46244001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depression in full remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed69", - "code": "60099002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe major depression with psychotic features, mood-incongruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed6a", - "code": "63412003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depression in full remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed6b", - "code": "63778009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depressive disorder, single episode with melancholic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed6c", - "code": "66344007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depression (disorder)" - }, - { - "_id": "609d8395b789027a3282ed6d", - "code": "68019004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depression in remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed6e", - "code": "69392006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depressive disorder, single episode with catatonic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed6f", - "code": "70747007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Major depression single episode, in partial remission (disorder)" - }, - { - "_id": "609d8395b789027a3282ed70", - "code": "71336009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Recurrent major depressive disorder with postpartum onset (disorder)" - }, - { - "_id": "609d8395b789027a3282ed71", - "code": "73867007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe major depression with psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed72", - "code": "75084000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe major depression without psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed73", - "code": "76441001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe major depression, single episode, without psychotic features (disorder)" - }, - { - "_id": "609d8395b789027a3282ed74", - "code": "77911002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Severe major depression, single episode, with psychotic features, mood-congruent (disorder)" - }, - { - "_id": "609d8395b789027a3282ed75", - "code": "78667006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Dysthymia (disorder)" - }, - { - "_id": "609d8395b789027a3282ed76", - "code": "79298009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild major depression, single episode (disorder)" - }, - { - "_id": "609d8395b789027a3282ed77", - "code": "832007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Moderate major depression (disorder)" - }, - { - "_id": "609d8395b789027a3282ed78", - "code": "87512008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Mild major depression (disorder)" - }, - { - "_id": "609d8395b789027a3282ed79", - "code": "F32.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, single episode, mild" - }, - { - "_id": "609d8395b789027a3282ed7a", - "code": "F32.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, single episode, moderate" - }, - { - "_id": "609d8395b789027a3282ed7b", - "code": "F32.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, single episode, severe without psychotic features" - }, - { - "_id": "609d8395b789027a3282ed7c", - "code": "F32.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, single episode, severe with psychotic features" - }, - { - "_id": "609d8395b789027a3282ed7d", - "code": "F32.4", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, single episode, in partial remission" - }, - { - "_id": "609d8395b789027a3282ed7e", - "code": "F32.81", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Premenstrual dysphoric disorder" - }, - { - "_id": "609d8395b789027a3282ed7f", - "code": "F32.89", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other specified depressive episodes" - }, - { - "_id": "609d8395b789027a3282ed80", - "code": "F32.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, single episode, unspecified" - }, - { - "_id": "609d8395b789027a3282ed81", - "code": "F33.0", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, recurrent, mild" - }, - { - "_id": "609d8395b789027a3282ed82", - "code": "F33.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, recurrent, moderate" - }, - { - "_id": "609d8395b789027a3282ed83", - "code": "F33.2", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, recurrent severe without psychotic features" - }, - { - "_id": "609d8395b789027a3282ed84", - "code": "F33.3", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, recurrent, severe with psychotic symptoms" - }, - { - "_id": "609d8395b789027a3282ed85", - "code": "F33.40", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, recurrent, in remission, unspecified" - }, - { - "_id": "609d8395b789027a3282ed86", - "code": "F33.41", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, recurrent, in partial remission" - }, - { - "_id": "609d8395b789027a3282ed87", - "code": "F33.8", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Other recurrent depressive disorders" - }, - { - "_id": "609d8395b789027a3282ed88", - "code": "F33.9", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Major depressive disorder, recurrent, unspecified" - }, - { - "_id": "609d8395b789027a3282ed89", - "code": "F34.1", - "code_system_name": "ICD10CM", - "code_system_oid": "2.16.840.1.113883.6.90", - "code_system_version": "2019", - "display_name": "Dysthymic disorder" - } - ], - "display_name": "BH Condition Involving Unipolar Depression", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.1257.1.1505", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaf3", - "concepts": [ - { - "_id": "609d8395b789027a3282ed8a", - "code": "428201000124103", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Counseling for depression (procedure)" - } - ], - "display_name": "BH Counseling for Depression", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.1257.1.1616", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaf4", - "concepts": [ - { - "_id": "609d8395b789027a3282ed8b", - "code": "11075005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Subconvulsive electroshock therapy (procedure)" - }, - { - "_id": "609d8395b789027a3282ed8c", - "code": "231079005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Multiple electroconvulsive therapy (procedure)" - }, - { - "_id": "609d8395b789027a3282ed8d", - "code": "231080008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Multiple monitored electroconvulsive therapy (procedure)" - }, - { - "_id": "609d8395b789027a3282ed8e", - "code": "23835007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Electroconvulsive therapy (procedure)" - }, - { - "_id": "609d8395b789027a3282ed8f", - "code": "284468008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Bilateral electroconvulsive therapy (procedure)" - }, - { - "_id": "609d8395b789027a3282ed90", - "code": "313019002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "First treatment in a course of electroconvulsive therapy (procedure)" - }, - { - "_id": "609d8395b789027a3282ed91", - "code": "313020008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Subsequent treatment in a course of electroconvulsive therapy (procedure)" - }, - { - "_id": "609d8395b789027a3282ed92", - "code": "90870", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Electroconvulsive therapy (includes necessary monitoring)" - }, - { - "_id": "609d8395b789027a3282ed93", - "code": "GZB0ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Electroconvulsive Therapy, Unilateral-Single Seizure" - }, - { - "_id": "609d8395b789027a3282ed94", - "code": "GZB1ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Electroconvulsive Therapy, Unilateral-Multiple Seizure" - }, - { - "_id": "609d8395b789027a3282ed95", - "code": "GZB2ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Electroconvulsive Therapy, Bilateral-Single Seizure" - }, - { - "_id": "609d8395b789027a3282ed96", - "code": "GZB3ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Electroconvulsive Therapy, Bilateral-Multiple Seizure" - }, - { - "_id": "609d8395b789027a3282ed97", - "code": "GZB4ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Other Electroconvulsive Therapy" - } - ], - "display_name": "BH Electroconvulsive Therapy", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.1257.1.1533", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaf5", - "concepts": [ - { - "_id": "609d8395b789027a3282ed98", - "code": "1006801", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clozapine 150 MG Disintegrating Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ed99", - "code": "151226", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "topiramate 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ed9a", - "code": "197535", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clozapine 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ed9b", - "code": "197536", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clozapine 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ed9c", - "code": "198075", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Perphenazine 16 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ed9d", - "code": "198076", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Perphenazine 2 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ed9e", - "code": "198077", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Perphenazine 4 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282ed9f", - "code": "198078", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Perphenazine 8 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eda0", - "code": "199888", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "topiramate 25 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eda1", - "code": "199889", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "topiramate 100 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eda2", - "code": "199890", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "topiramate 200 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eda3", - "code": "205315", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "topiramate 25 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282eda4", - "code": "205316", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "topiramate 15 MG Oral Capsule" - }, - { - "_id": "609d8395b789027a3282eda5", - "code": "283536", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "oxcarbazepine 60 MG/ML Oral Suspension" - }, - { - "_id": "609d8395b789027a3282eda6", - "code": "309374", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clozapine 200 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eda7", - "code": "312136", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "oxcarbazepine 150 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eda8", - "code": "312137", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "oxcarbazepine 300 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282eda9", - "code": "312138", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "oxcarbazepine 600 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edaa", - "code": "429212", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clozapine 50 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edab", - "code": "476177", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clozapine 100 MG Disintegrating Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edac", - "code": "476179", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clozapine 25 MG Disintegrating Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edad", - "code": "721773", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clozapine 12.5 MG Disintegrating Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edae", - "code": "848722", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "iloperidone 1 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edaf", - "code": "848728", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "iloperidone 10 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edb0", - "code": "848732", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "iloperidone 12 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edb1", - "code": "848736", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "iloperidone 2 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edb2", - "code": "848740", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "iloperidone 4 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edb3", - "code": "848744", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "iloperidone 6 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edb4", - "code": "848748", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "iloperidone 8 MG Oral Tablet" - }, - { - "_id": "609d8395b789027a3282edb5", - "code": "859824", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "fluphenazine decanoate 25 MG/ML Injectable Solution" - }, - { - "_id": "609d8395b789027a3282edb6", - "code": "996921", - "code_system_name": "RXNORM", - "code_system_oid": "2.16.840.1.113883.6.88", - "code_system_version": "2019-01", - "display_name": "Clozapine 200 MG Disintegrating Oral Tablet" - } - ], - "display_name": "BH Mood Stabilizer Medication", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.1257.1.950", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaf6", - "concepts": [ - { - "_id": "609d8395b789027a3282edb7", - "code": "17436001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Medical consultation with outpatient (procedure)" - }, - { - "_id": "609d8395b789027a3282edb8", - "code": "183654001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Follow-up in outpatient clinic (finding)" - }, - { - "_id": "609d8395b789027a3282edb9", - "code": "185211000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Seen in hospital outpatient department (finding)" - }, - { - "_id": "609d8395b789027a3282edba", - "code": "185387006", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "New patient consultation (procedure)" - }, - { - "_id": "609d8395b789027a3282edbb", - "code": "185389009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Follow-up visit (procedure)" - }, - { - "_id": "609d8395b789027a3282edbc", - "code": "185463005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Visit out of hours (procedure)" - }, - { - "_id": "609d8395b789027a3282edbd", - "code": "185464004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Out of hours visit - not night visit (procedure)" - }, - { - "_id": "609d8395b789027a3282edbe", - "code": "185465003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Weekend visit (procedure)" - }, - { - "_id": "609d8395b789027a3282edbf", - "code": "281036007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Follow-up consultation (procedure)" - }, - { - "_id": "609d8395b789027a3282edc0", - "code": "30346009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-03", - "display_name": "Evaluation and management of established outpatient in office or other outpatient facility (procedure)" - }, - { - "_id": "609d8395b789027a3282edc1", - "code": "3391000175108", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Office visit for pediatric care and assessment (procedure)" - }, - { - "_id": "609d8395b789027a3282edc2", - "code": "371883000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Outpatient procedure (procedure)" - }, - { - "_id": "609d8395b789027a3282edc3", - "code": "37894004", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-03", - "display_name": "Evaluation and management of new outpatient in office or other outpatient facility (procedure)" - }, - { - "_id": "609d8395b789027a3282edc4", - "code": "390906007", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Follow-up encounter (procedure)" - }, - { - "_id": "609d8395b789027a3282edc5", - "code": "40274000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "General outpatient clinic admission (procedure)" - }, - { - "_id": "609d8395b789027a3282edc6", - "code": "439740005", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Postoperative follow-up visit (procedure)" - }, - { - "_id": "609d8395b789027a3282edc7", - "code": "77406008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Confirmatory medical consultation (procedure)" - }, - { - "_id": "609d8395b789027a3282edc8", - "code": "86013001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Periodic reevaluation and management of healthy individual (procedure)" - }, - { - "_id": "609d8395b789027a3282edc9", - "code": "90526000", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Initial evaluation and management of healthy individual (procedure)" - }, - { - "_id": "609d8395b789027a3282edca", - "code": "99201", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: A problem focused history; A problem focused examination; Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are self limited or minor. Typically, 10 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edcb", - "code": "99202", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: An expanded problem focused history; An expanded problem focused examination; Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of low to moderate severity. Typically, 20 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edcc", - "code": "99203", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: A detailed history; A detailed examination; Medical decision making of low complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate severity. Typically, 30 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edcd", - "code": "99204", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: A comprehensive history; A comprehensive examination; Medical decision making of moderate complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 45 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edce", - "code": "99205", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of a new patient, which requires these 3 key components: A comprehensive history; A comprehensive examination; Medical decision making of high complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 60 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edcf", - "code": "99212", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: A problem focused history; A problem focused examination; Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are self limited or minor. Typically, 10 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edd0", - "code": "99213", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: An expanded problem focused history; An expanded problem focused examination; Medical decision making of low complexity. Counseling and coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of low to moderate severity. Typically, 15 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edd1", - "code": "99214", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: A detailed history; A detailed examination; Medical decision making of moderate complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 25 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edd2", - "code": "99215", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office or other outpatient visit for the evaluation and management of an established patient, which requires at least 2 of these 3 key components: A comprehensive history; A comprehensive examination; Medical decision making of high complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 40 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edd3", - "code": "99241", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office consultation for a new or established patient, which requires these 3 key components: A problem focused history; A problem focused examination; and Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are self limited or minor. Typically, 15 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edd4", - "code": "99242", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office consultation for a new or established patient, which requires these 3 key components: An expanded problem focused history; An expanded problem focused examination; and Straightforward medical decision making. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of low severity. Typically, 30 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edd5", - "code": "99243", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office consultation for a new or established patient, which requires these 3 key components: A detailed history; A detailed examination; and Medical decision making of low complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate severity. Typically, 40 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edd6", - "code": "99244", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office consultation for a new or established patient, which requires these 3 key components: A comprehensive history; A comprehensive examination; and Medical decision making of moderate complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 60 minutes are spent face-to-face with the patient and/or family." - }, - { - "_id": "609d8395b789027a3282edd7", - "code": "99245", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Office consultation for a new or established patient, which requires these 3 key components: A comprehensive history; A comprehensive examination; and Medical decision making of high complexity. Counseling and/or coordination of care with other physicians, other qualified health care professionals, or agencies are provided consistent with the nature of the problem(s) and the patient's and/or family's needs. Usually, the presenting problem(s) are of moderate to high severity. Typically, 80 minutes are spent face-to-face with the patient and/or family." - } - ], - "display_name": "BH Outpatient encounter", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.464.1.49", - "version": "Profile:Latest eCQM" - }, - { - "_id": "609d8395b789027a3282eaf7", - "concepts": [ - { - "_id": "609d8395b789027a3282edd8", - "code": "108313002", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Family psychotherapy procedure (regime/therapy)" - }, - { - "_id": "609d8395b789027a3282edd9", - "code": "183382003", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Psychotherapy - behavioral (regime/therapy)" - }, - { - "_id": "609d8395b789027a3282edda", - "code": "183383008", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Psychotherapy - cognitive (regime/therapy)" - }, - { - "_id": "609d8395b789027a3282eddb", - "code": "75516001", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Psychotherapy (regime/therapy)" - }, - { - "_id": "609d8395b789027a3282eddc", - "code": "76168009", - "code_system_name": "SNOMEDCT", - "code_system_oid": "2.16.840.1.113883.6.96", - "code_system_version": "2018-09", - "display_name": "Group psychotherapy (regime/therapy)" - }, - { - "_id": "609d8395b789027a3282eddd", - "code": "90791", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Psychiatric diagnostic evaluation" - }, - { - "_id": "609d8395b789027a3282edde", - "code": "90792", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Psychiatric diagnostic evaluation with medical services" - }, - { - "_id": "609d8395b789027a3282eddf", - "code": "90832", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Psychotherapy, 30 minutes with patient" - }, - { - "_id": "609d8395b789027a3282ede0", - "code": "90834", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Psychotherapy, 45 minutes with patient" - }, - { - "_id": "609d8395b789027a3282ede1", - "code": "90837", - "code_system_name": "CPT", - "code_system_oid": "2.16.840.1.113883.6.12", - "code_system_version": "2019", - "display_name": "Psychotherapy, 60 minutes with patient" - }, - { - "_id": "609d8395b789027a3282ede2", - "code": "GZ50ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Individual Psychotherapy, Interactive" - }, - { - "_id": "609d8395b789027a3282ede3", - "code": "GZ51ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Individual Psychotherapy, Behavioral" - }, - { - "_id": "609d8395b789027a3282ede4", - "code": "GZ52ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Individual Psychotherapy, Cognitive" - }, - { - "_id": "609d8395b789027a3282ede5", - "code": "GZ53ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Individual Psychotherapy, Interpersonal" - }, - { - "_id": "609d8395b789027a3282ede6", - "code": "GZ54ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Individual Psychotherapy, Psychoanalysis" - }, - { - "_id": "609d8395b789027a3282ede7", - "code": "GZ55ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Individual Psychotherapy, Psychodynamic" - }, - { - "_id": "609d8395b789027a3282ede8", - "code": "GZ56ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Individual Psychotherapy, Supportive" - }, - { - "_id": "609d8395b789027a3282ede9", - "code": "GZ58ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Individual Psychotherapy, Cognitive-Behavioral" - }, - { - "_id": "609d8395b789027a3282edea", - "code": "GZ59ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Individual Psychotherapy, Psychophysiological" - }, - { - "_id": "609d8395b789027a3282edeb", - "code": "GZ72ZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Family Psychotherapy" - }, - { - "_id": "609d8395b789027a3282edec", - "code": "GZHZZZZ", - "code_system_name": "ICD10PCS", - "code_system_oid": "2.16.840.1.113883.6.4", - "code_system_version": "2019", - "display_name": "Group Psychotherapy" - } - ], - "display_name": "BH Outpatient Psychotherapy", - "group_id": "501fdba3044a111b98000001", - "oid": "2.16.840.1.113883.3.1257.1.973", - "version": "Profile:Latest eCQM" - } - ] + "response_data": "

api_v1/measures

\n\n\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n
HQMF SET IDCMS IDTitle
7B2A9277-43DA-4D99-9BEE-6AC271A07747CMS134v6Diabetes: Medical Attention for NephropathyJSONCalculated Results
\n\n
", + "code": "200", + "show_in_doc": 1, + "recorded": true + }, + { + "verb": "GET", + "path": "/api_v1/measures", + "versions": [ + "1" + ], + "query": "", + "request_data": null, + "response_data": [ + { + "_id": "7B2A9277-43DA-4D99-9BEE-6AC271A07747", + "cms_id": "CMS134v6", + "created_at": "2019-07-11T18:46:32.616Z", + "description": "The percentage of patients 18-75 years of age with diabetes who had a nephropathy screening test or evidence of nephropathy during the measurement period", + "hqmf_id": "40280382-5FA6-FE85-0160-0918E74D2075", + "hqmf_set_id": "7B2A9277-43DA-4D99-9BEE-6AC271A07747", + "hqmf_version_number": "0", + "title": "Diabetes: Medical Attention for Nephropathy", + "updated_at": "2019-07-11T18:46:32.616Z" + } + ], + "code": "200", + "show_in_doc": 1, + "recorded": true + } + ], + "measures#show": [ + { + "verb": "GET", + "path": "/api_v1/measures/foo", + "versions": [ + "1" + ], + "query": "", + "request_data": null, + "response_data": { + }, + "code": "404", + "show_in_doc": 1, + "recorded": true + }, + { + "verb": "GET", + "path": "/api_v1/measures/7B2A9277-43DA-4D99-9BEE-6AC271A07747", + "versions": [ + "1" + ], + "query": "", + "request_data": null, + "response_data": { + "cms_id": "CMS134v6", + "created_at": "2019-07-11T18:46:32.616Z", + "description": "The percentage of patients 18-75 years of age with diabetes who had a nephropathy screening test or evidence of nephropathy during the measurement period", + "hqmf_id": "40280382-5FA6-FE85-0160-0918E74D2075", + "hqmf_set_id": "7B2A9277-43DA-4D99-9BEE-6AC271A07747", + "hqmf_version_number": "0", + "title": "Diabetes: Medical Attention for Nephropathy", + "updated_at": "2019-07-11T18:46:32.616Z" }, "code": "200", "show_in_doc": 1, @@ -56738,7 +13403,14 @@ "1" ], "query": null, - "request_data": "Content-Type: multipart/form-data; boundary=APIPIE_RECORDER_EXAMPLE_BOUNDARY\n\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_query_type\"\nContent-Length: 7\n\nprofile\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_query_profile\"\nContent-Length: 11\n\nLatest eCQM\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_query_measure_defined\"\nContent-Length: 4\n\ntrue\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_tgt\"\nContent-Length: 65\n\nTGT-229792-vaQWUba1FcYreJsEW3vZpLrae9U6vObfqnC6mcysoa7obbL5zg-cas\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_tgt_expires_at\"\nContent-Length: 10\n\n1589254986\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"measure_file\"; filename=\"IETCQL_v5_0_Artifacts.zip\"\nContent-Length: 36765\nContent-Type: application/zip\nContent-Transfer-Encoding: binary\n\n... contents of \"measure_file\" ...\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"calculation_type\"\nContent-Length: 7\n\nepisode\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY--", + "request_data": { + "vsac_api_key": "vcrpass", + "vsac_query_type": "profile", + "vsac_query_profile": "Latest eCQM", + "vsac_query_measure_defined": "true", + "measure_file": "", + "calculation_type": "episode" + }, "response_data": { "status": "error", "messages": "No measure found for this HQMF Set ID." @@ -56754,7 +13426,20 @@ "1" ], "query": null, - "request_data": "Content-Type: multipart/form-data; boundary=APIPIE_RECORDER_EXAMPLE_BOUNDARY\n\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"calculation_type\"\nContent-Length: 7\n\nepisode\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"measure_file\"; filename=\"CMS903v0.zip\"\nContent-Length: 26016\nContent-Type: application/zip\nContent-Transfer-Encoding: binary\n\n... contents of \"measure_file\" ...\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"population_titles[]\"\n\nFoo\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"population_titles[]\"\n\nbar\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"population_titles[]\"\n\nbaz\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"population_titles[]\"\n\nbam\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_query_measure_defined\"\nContent-Length: 4\n\ntrue\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_query_profile\"\nContent-Length: 11\n\nLatest eCQM\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_query_type\"\nContent-Length: 7\n\nprofile\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_tgt\"\nContent-Length: 66\n\nTGT-1609324-E4NK175OUeS0ixzo4WAPxPaNzuHVMvaYuJkzBkLbLgVRfY2Sy1-cas\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY\nContent-Disposition: form-data; name=\"vsac_tgt_expires_at\"\nContent-Length: 10\n\n1589254987\n--APIPIE_RECORDER_EXAMPLE_BOUNDARY--", + "request_data": { + "vsac_api_key": "vcrpass", + "vsac_query_type": "profile", + "vsac_query_profile": "Latest eCQM", + "vsac_query_measure_defined": "true", + "measure_file": "", + "calculation_type": "episode", + "population_titles": [ + "Foo", + "bar", + "baz", + "bam" + ] + }, "response_data": { "status": "success", "url": "/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076" @@ -66761,5 +23446,157 @@ "show_in_doc": 1, "recorded": true } + ], + "vsac_util#auth_expire": [ + { + "verb": "POST", + "path": "/vsac_util/auth_expire", + "versions": [ + + ], + "query": null, + "request_data": { + }, + "response_data": { + }, + "code": "200", + "show_in_doc": 1, + "recorded": true + } + ], + "vsac_util#auth_valid": [ + { + "verb": "GET", + "path": "/vsac_util/auth_valid", + "versions": [ + + ], + "query": "", + "request_data": null, + "response_data": { + "valid": true + }, + "code": "200", + "show_in_doc": 1, + "recorded": true + } + ], + "vsac_util#profile_names": [ + { + "verb": "GET", + "path": "/vsac_util/profile_names", + "versions": [ + + ], + "query": "", + "request_data": null, + "response_data": { + "profileNames": [ + "Most Recent Code System Versions in VSAC", + "eCQM Update 2020-05-07", + "CMS Pre-rulemaking eCQM 2020-05-07", + "CMS Pre-rulemaking eCQM 2019-08-30", + "C-CDA R2.1 2019-06-28", + "eCQM Update 2019-05-10", + "CMS Pre-rulemaking eCQM 2019-05-10", + "RCKMS Release 1.0 2018-10-31", + "eCQM Update 2018-09-17", + "C-CDA R2.1 2018-06-15", + "eCQM Update 2018-05-04", + "C-CDA R2.1 2018-02-01", + "CMS 2018 IQR Voluntary Hybrid Reporting", + "eCQM Update 2018 EP-EC and EH", + "eCQM Update 4Q2017 EH", + "C-CDA R2.1 2017-06-09", + "eCQM Update 2017-05-05", + "MU2 Update 2017-01-06", + "C-CDA R1.1 2016-06-23", + "MU2 Update 2016-04-01", + "MU2 Update 2015-05-01", + "MU2 EP Update 2014-05-30", + "MU2 EH Update 2014-04-01", + "MU2 EP Update 2013-06-14", + "MU2 EH Update 2013-04-01", + "MU2 Update 2012-12-21", + "MU2 Update 2012-10-25" + ], + "latestProfile": "eCQM Update 2020-05-07" + }, + "code": "200", + "show_in_doc": 1, + "recorded": true + } + ], + "vsac_util#program_names": [ + { + "verb": "GET", + "path": "/vsac_util/program_names", + "versions": [ + + ], + "query": "", + "request_data": null, + "response_data": { + "programNames": [ + "CMS Hybrid", + "CMS Pre-rulemaking eCQM", + "CMS eCQM", + "HL7 C-CDA" + ] + }, + "code": "200", + "show_in_doc": 1, + "recorded": true + } + ], + "vsac_util#program_release_names": [ + { + "verb": "GET", + "path": "/vsac_util/program_release_names/CMS%20eCQM", + "versions": [ + + ], + "query": "", + "request_data": null, + "response_data": { + "programName": "CMS eCQM", + "releaseNames": [ + "eCQM Update 2019-05-10", + "eCQM Update 2018-09-17", + "eCQM Update 2018-05-04", + "eCQM Update 2018 EP-EC and EH", + "eCQM Update 4Q2017 EH", + "eCQM Update 2017-05-05", + "MU2 Update 2017-01-06", + "MU2 Update 2016-04-01", + "MU2 Update 2015-05-01", + "MU2 EP Update 2014-07-01", + "MU2 EP Update 2014-05-30", + "MU2 EH Update 2014-04-01", + "MU2 EP Update 2013-06-14", + "MU2 EH Update 2013-04-01", + "MU2 Update 2012-12-21", + "MU2 Update 2012-10-25" + ] + }, + "code": "200", + "show_in_doc": 1, + "recorded": true + }, + { + "verb": "GET", + "path": "/vsac_util/program_release_names/Bad%20Program", + "versions": [ + + ], + "query": "", + "request_data": null, + "response_data": { + "error": "Program not found." + }, + "code": "404", + "show_in_doc": 1, + "recorded": true + } ] } \ No newline at end of file diff --git a/package.json b/package.json index 1d3524c04..0e7811f6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bonnie", - "version": "5.1.4", + "version": "5.1.5", "description": "A tool for testing electronic clinical quality measures", "main": "index.js", "repository": "git@github.com:MeasureAuthoringTool/bonnie.git", diff --git a/test/fixtures/vcr_cassettes/api_invalid_ticket_vsac_response.yml b/test/fixtures/vcr_cassettes/api_invalid_ticket_vsac_response.yml index e3e69f324..5b8bd608b 100644 --- a/test/fixtures/vcr_cassettes/api_invalid_ticket_vsac_response.yml +++ b/test/fixtures/vcr_cassettes/api_invalid_ticket_vsac_response.yml @@ -1,494 +1,1104 @@ --- http_interactions: -- request: - method: get - uri: https://vsac.nlm.nih.gov/vsac/program/CMS%20eCQM%20and%20Hybrid%20Measure/latest%20profile - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 200 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - application/json - Content-Length: - - '72' - Date: - - Tue, 25 Jun 2019 23:41:18 GMT - Set-Cookie: - - BIGipServervsacweb_p=!+EOziz4YEC7raozNtNHn4GsLooFbU6eonc4ihtVnPV3z276VoWGQkpaR+nt/JTs/r/KKoL57XdNys5E=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.112 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '{"name":"eCQM Update 2019-05-10","requestTime":"2019-06-25 07:41:19 + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket + body: + encoding: US-ASCII + string: username=&password= + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '66' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + Set-Cookie: + - BIGipServervsacweb_p=!LRop+WtmBEHdCJvNtNHn4GsLooFbU1g7H/Io6b3SaM9HpnlR0TKvGkwC78b2PPA+7KdHJCFE9ri7oOs=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.110 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/program/CMS%20eCQM%20and%20Hybrid%20Measure/latest%20profile + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - application/json + Content-Length: + - '72' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + Set-Cookie: + - BIGipServervsacweb_p=!zZ87VSCoLoMOZhfNtNHn4GsLooFbU+QHNcFav5W9JYFHMzOFD0rOvMlQvUrTwtieI61LqqITkwsdYBg=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.110 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '{"name":"eCQM Update 2019-05-10","requestTime":"2019-06-25 07:33:11 PM"}' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT -- request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/foo?service=http://umlsks.nlm.nih.gov - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 401 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked - Date: - - Tue, 25 Jun 2019 23:41:19 GMT - Set-Cookie: - - BIGipServervsacweb_p=!NShbCa09TIFtCBLNtNHn4GsLooFbUw5I28GoQUud8vSxca/uJhVuoCl86zliTmvXdfe4n2qOALIl5+0=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.112 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT -- request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/foo?service=http://umlsks.nlm.nih.gov - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 401 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked - Date: - - Tue, 25 Jun 2019 23:41:19 GMT - Set-Cookie: - - BIGipServervsacweb_p=!fbOpq3LU6BqQpvnm9OGvBt4MxRMcjpFglh/X6ZQT3b2wohnbACT12i7q1eZLkby8wiMmWeww6eCyBUA=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.112 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT -- request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/foo?service=http://umlsks.nlm.nih.gov - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 401 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked - Date: - - Tue, 25 Jun 2019 23:41:19 GMT - Set-Cookie: - - BIGipServervsacweb_p=!nd+IvyrbeGUxjn7m9OGvBt4MxRMcjhQGW3NpGCnPozQqfje4Fqa3dDfu4NyBQuCI51fmxm6JgW05nTk=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.112 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT -- request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/foo?service=http://umlsks.nlm.nih.gov - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 401 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked - Date: - - Tue, 25 Jun 2019 23:41:19 GMT - Set-Cookie: - - BIGipServervsacweb_p=!p2OPZSGYAbs/pp/m9OGvBt4MxRMcjlZPfZ4oeTXJCWI1ZGOZb3pu8cXXDcSXVep3YJEcX/I/rEL5TJM=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.112 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT -- request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/foo?service=http://umlsks.nlm.nih.gov - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 401 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked - Date: - - Tue, 25 Jun 2019 23:41:19 GMT - Set-Cookie: - - BIGipServervsacweb_p=!fuxeGSWrgu8Rz93m9OGvBt4MxRMcjub5za5UUGnO8dIZAwPEhSCqffwTXaIovyb02nCzRNWKOfapjTI=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.112 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT -- request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/foo?service=http://umlsks.nlm.nih.gov - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 401 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked - Date: - - Tue, 25 Jun 2019 23:41:19 GMT - Set-Cookie: - - BIGipServervsacweb_p=!qGlW/Kuz67mMKWrNtNHn4GsLooFbU/xsVOnUX7UhF0Jqfn9ILKJzZn+y03GOaVi0nBaD01FleJVaN5w=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.114 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT -- request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/foo?service=http://umlsks.nlm.nih.gov - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 401 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked - Date: - - Tue, 25 Jun 2019 23:41:19 GMT - Set-Cookie: - - BIGipServervsacweb_p=!o/cmErzKwSJZGOLNtNHn4GsLooFbUz7QsrB358GRXCOb6tfJknLXS8uNmKbY6ZzIINpCX+N6pd7O6Vg=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.110 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT -- request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/foo?service=http://umlsks.nlm.nih.gov - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 401 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked - Date: - - Tue, 25 Jun 2019 23:41:19 GMT - Set-Cookie: - - BIGipServervsacweb_p=!pKhtdZXifwF2t/HNtNHn4GsLooFbU6sNeCRQ3ToQuhNoiYVE2dQrDb7TVmPLzrJ30lXEoqaCs8UZxdY=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.114 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT -- request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/foo?service=http://umlsks.nlm.nih.gov - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus - Expect: - - '' - response: - status: - code: 401 - message: '' - headers: - X-Frame-Options: - - SAMEORIGIN - X-Content-Type-Options: - - nosniff - - nosniff - X-Xss-Protection: - - 1; mode=block - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - '0' - Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked - Date: - - Tue, 25 Jun 2019 23:41:19 GMT - Set-Cookie: - - BIGipServervsacweb_p=!CUVORf1s4ei+6E3m9OGvBt4MxRMcjiZZzQNH6Mf2TBvN1DROQxtN+fASr9b5VfCrUBc20Nav8WdWa8Q=; - expires=Wed, 26-Jun-2019 01:41:19 GMT; path=/; Httponly; Secure - X-Vip-Info: - - 130.14.16.40:443 - X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.110 8080" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Tue, 25 Jun 2019 23:41:19 GMT + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas?service=http://umlsks.nlm.nih.gov + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '35' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + Set-Cookie: + - BIGipServervsacweb_p=!kI/K8NUcpxkh0wDm9OGvBt4MxRMcjp8qWibk9l7j6pnUdWOz0AHAiWiSEefMr3m0qJxjMo5c4M8czYo=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.110 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: ST-6419039-7xQxXgdhvFH93LytwNqR-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas?service=http://umlsks.nlm.nih.gov + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '35' + Date: + - Tue, 25 Jun 2019 23:33:10 GMT + Set-Cookie: + - BIGipServervsacweb_p=!CslnShaSuubB/4nm9OGvBt4MxRMcjinrphe8lWwllKKV5mkbcR5PF4B7yjd4jxq0QttxpxrpsrJ1x30=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: ST-6419040-2aDclgcJMLsET4Nefekb-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas?service=http://umlsks.nlm.nih.gov + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '35' + Date: + - Tue, 25 Jun 2019 23:33:10 GMT + Set-Cookie: + - BIGipServervsacweb_p=!hn3BQCIN2RT9u57m9OGvBt4MxRMcjjV8wGWTgDfyxP2UIG3cL4n+ajJzz/v6flK+qwi1JDWGVJ5EFE4=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: ST-6419046-50prEEmF4QDMh9H3SGSQ-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas?service=http://umlsks.nlm.nih.gov + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '35' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + Set-Cookie: + - BIGipServervsacweb_p=!yD23BT1/u30nCOrm9OGvBt4MxRMcjq+Rt8byhTIyXEmedLY8cfhhcruya+SM6fZYjZcorus+62aIjHg=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.110 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: ST-6419041-ssqjTPn9sQNaFyuCG47h-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas?service=http://umlsks.nlm.nih.gov + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '35' + Date: + - Tue, 25 Jun 2019 23:33:10 GMT + Set-Cookie: + - BIGipServervsacweb_p=!mkK/54+yLdwItLnNtNHn4GsLooFbUzMfiujdxTcYYfpJXgbHxWXF2JY6kx1/dSbYW4ZCTwTEG9wRn1M=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: ST-6419044-vwutdrdEh9GD2xldeuUN-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas?service=http://umlsks.nlm.nih.gov + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '35' + Date: + - Tue, 25 Jun 2019 23:33:10 GMT + Set-Cookie: + - BIGipServervsacweb_p=!9rvpkm8Hj635qLDNtNHn4GsLooFbU5xnTAJq1pjzd83w3JtSNzTtd/AXIRirLEYtFIv5JAOr2D2IrN8=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: ST-6419047-fJWEdpcaiaRZLZjfSz04-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas?service=http://umlsks.nlm.nih.gov + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '35' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + Set-Cookie: + - BIGipServervsacweb_p=!DwKXzfAg1oq7ePXNtNHn4GsLooFbU9DivD63js061Zj0xFapg59oxYCMNvIaByAcbc8SWgKXuSyrkec=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.112 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: ST-6419042-6BbLuPQPAw0XOHRFddke-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas?service=http://umlsks.nlm.nih.gov + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '35' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + Set-Cookie: + - BIGipServervsacweb_p=!GpxX5cZBMDnhJEDNtNHn4GsLooFbU07TVaOrYv1g27DgOExjzCFnk9cWmh28kafSidhnlr5hC2+tcU8=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.112 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: ST-6419045-eO3Wlsupf7vjlzgiu7kW-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: post + uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket/TGT-1609088-X9viqkKaxsKedIxyNP6DxSdt0hdNXeQPeydzTFPCtRDV9BXjWb-cas?service=http://umlsks.nlm.nih.gov + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/plain;charset=utf-8 + Content-Length: + - '35' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + Set-Cookie: + - BIGipServervsacweb_p=!BjFwIFvBYjCfirvNtNHn4GsLooFbUw1LSc5GWfrfJNHeMapB0X8S+ZtzLrsuFfopE1IKVl4M+hLn7Bs=; + expires=Wed, 26-Jun-2019 01:33:11 GMT; path=/; Httponly; Secure + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.112 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: ST-6419043-PvosDuVg9xWNPDRfk3ab-cas + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:11 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113883.3.117.1.7.1.87&includeDraft=yes&profile=eCQM%20Update%202019-05-10&ticket=ST-6419043-PvosDuVg9xWNPDRfk3ab-cas + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!Aw2EdAqGvSJqnczNtNHn4GsLooFbU0A4dDvDAbyhoVZ3cHQZ4Rfep6rqXyqVxG5LGNULvxThTZqJzEg=; + expires=Wed, 26-Jun-2019 01:33:12 GMT; path=/; Httponly; Secure + - JSESSIONID=93C408961574F1B05287027A696C7275; Path=/vsac; HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Content-Length: + - '2006' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.112 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: | + + + + + + + + + The Joint Commission + (Clinical Focus: This value set contains concepts that represent the discharge of a patient to an acute care facility.),(Data Element Scope: This value set may use the Quality Data Model (QDM) attribute related to Discharge Disposition. The intent of this data element is to identify the final place or setting to which the patient was discharged on the day of discharge from a particular inpatient encounter. This particular value set intends to identify patients who were discharged to an acute care facility.),(Inclusion Criteria: Includes only relevant concepts associated with SNOMED CT codes representing short-term acute care hospitals, including specialty hospitals.),(Exclusion Criteria: No exclusions.) + Extensional + Dynamic + Active + 2019-06-25 + + + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:12 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113762.1.4.1&includeDraft=yes&profile=eCQM%20Update%202019-05-10&ticket=ST-6419046-50prEEmF4QDMh9H3SGSQ-cas + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!4EM0PGEIDw1aotzm9OGvBt4MxRMcjqPzTjYaT046GOB/laXS/TNKctiYaZmdxygcKQrSCWuERo8IO5o=; + expires=Wed, 26-Jun-2019 01:33:12 GMT; path=/; Httponly; Secure + - JSESSIONID=DA09EFA206B70B4BDB168B6ED8C3E429; Path=/vsac; HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Content-Length: + - '1356' + Date: + - Tue, 25 Jun 2019 23:33:12 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: | + + + + + + + + Office of the National Coordinator for Health Information Technology + (Clinical Focus: Gender identity restricted to only Male and Female used in administrative situations requiring a restriction to these two categories.),(Data Element Scope: Gender),(Inclusion Criteria: Male and Female only.),(Exclusion Criteria: Any gender identity that is not male or female.) + Extensional + Dynamic + Active + 2019-06-25 + + + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:12 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.114222.4.11.837&includeDraft=yes&profile=eCQM%20Update%202019-05-10&ticket=ST-6419047-fJWEdpcaiaRZLZjfSz04-cas + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!7CUyP6/qMhRmplXm9OGvBt4MxRMcjjRj9Bv08CJo3EC3JIz/ZC0BFBnAFcyyqE99u3p1rjm15WXGssE=; + expires=Wed, 26-Jun-2019 01:33:12 GMT; path=/; Httponly; Secure + - JSESSIONID=8A027389DBCBE4B804390E2E2E3F9B50; Path=/vsac; HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Content-Length: + - '1128' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.110 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: | + + + + + + + + Centers for Disease Control National Center for Health Statistics + (Clinical Focus: ),(Data Element Scope: ),(Inclusion Criteria: ),(Exclusion Criteria: ) + Extensional + Dynamic + Active + 2019-06-25 + + + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:12 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113883.3.666.5.307&includeDraft=yes&profile=eCQM%20Update%202019-05-10&ticket=ST-6419040-2aDclgcJMLsET4Nefekb-cas + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!q17c21/z4d8RkpDNtNHn4GsLooFbU9LEc+o0uWHQB7Uj384XDlS5W0wCkESSFyLnBVIl1y0RKYv41A8=; + expires=Wed, 26-Jun-2019 01:33:12 GMT; path=/; Httponly; Secure + - JSESSIONID=7CCE4F2E08EF56D216F82053044416B2; Path=/vsac; HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Content-Length: + - '1692' + Date: + - Tue, 25 Jun 2019 23:33:12 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: | + + + + + + + + + Lantana + (Clinical Focus: This value set contains concepts that represent the most common inpatient encounter types.),(Data Element Scope: This value set may use the Quality Data Model (QDM) category related to Encounter. The intent of this data element is to identify patients who have had an inpatient encounter. ),(Inclusion Criteria: Includes only relevant concepts associated with SNOMED CT codes representing inpatient encounter.),(Exclusion Criteria: No exclusions.) + Extensional + Dynamic + Active + 2019-06-25 + + + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:12 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113883.3.117.1.7.1.292&includeDraft=yes&profile=eCQM%20Update%202019-05-10&ticket=ST-6419042-6BbLuPQPAw0XOHRFddke-cas + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!wQ4RIU7c25T/TgbNtNHn4GsLooFbUyXYBXwQwgUewwSJoIKqG6J4950i68fuIo3YA7OBoparyM+8quU=; + expires=Wed, 26-Jun-2019 01:33:12 GMT; path=/; Httponly; Secure + - JSESSIONID=36E0E1BB828BD22E96B335F283B34A48; Path=/vsac; HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Content-Length: + - '1405' + Date: + - Tue, 25 Jun 2019 23:33:12 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: | + + + + + + + The Joint Commission + (Clinical Focus: This value set contains concepts that represent procedures representing an emergency department encounter.),(Data Element Scope: This value set may use the Quality Data Model (QDM) category related to Encounter. The intent of this data element is to identify patients who have had an emergency department encounter. ),(Inclusion Criteria: Includes only relevant concepts associated with an emergency department visit encounter using the SNOMED CT code system.),(Exclusion Criteria: No exclusions.) + Extensional + Dynamic + Active + 2019-06-25 + + + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:12 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113762.1.4.1111.143&includeDraft=yes&profile=eCQM%20Update%202019-05-10&ticket=ST-6419039-7xQxXgdhvFH93LytwNqR-cas + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!mkW+QWut20vw4CLm9OGvBt4MxRMcjsL0G7QpzI67W5LRuMGGcQOciHJJ6r0t6/n3DN2YtY6Comi9ow4=; + expires=Wed, 26-Jun-2019 01:33:12 GMT; path=/; Httponly; Secure + - JSESSIONID=9A467A5119DDF9A7E727D738FED8BACD; Path=/vsac; HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Content-Length: + - '1739' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.110 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: | + + + + + + + + + The Joint Commission + (Clinical Focus: This value set contains concepts that represent observation encounter types.),(Data Element Scope: This value set may use the Quality Data Model (QDM) category related to Encounter. The intent of this data element is to identify patients who have had an observation encounter. ),(Inclusion Criteria: Includes only relevant concepts associated with SNOMED CT codes representing inpatient encounter.),(Exclusion Criteria: No exclusions.) + Extensional + Dynamic + Active + 2019-06-25 + + + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:12 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.114222.4.11.836&includeDraft=yes&profile=eCQM%20Update%202019-05-10&ticket=ST-6419045-eO3Wlsupf7vjlzgiu7kW-cas + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 200 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!neqOnKopza+TQjzNtNHn4GsLooFbUxCA9Q/66YHYlvpgjasMSjlySdNmzu8i/xSltiAZidqPk/1lhXs=; + expires=Wed, 26-Jun-2019 01:33:12 GMT; path=/; Httponly; Secure + - JSESSIONID=6211E988358CBE100196CA5495AF0F8A; Path=/vsac; HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Content-Length: + - '1765' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.110 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: | + + + + + + + + + + + + Centers for Disease Control National Center for Health Statistics + (Clinical Focus: ),(Data Element Scope: ),(Inclusion Criteria: ),(Exclusion Criteria: ) + Extensional + Dynamic + Active + 2019-06-25 + + + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:12 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.114222.4.11.3591&includeDraft=yes&profile=eCQM%20Update%202019-05-10&ticket=ST-6419044-vwutdrdEh9GD2xldeuUN-cas + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!BHkmliuRMtjo41Dm9OGvBt4MxRMcjgbXXvybg0Bccm61Zzhqd3YGw4LQl57mmo+WxhQ5/I4h3Ea92zA=; + expires=Wed, 26-Jun-2019 01:33:12 GMT; path=/; Httponly; Secure + - JSESSIONID=CBE3B49BADAE93659966373CD91D7209; Path=/vsac; HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Content-Length: + - '27696' + Date: + - Tue, 25 Jun 2019 23:33:12 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:12 GMT + - request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113883.3.117.1.7.1.299&includeDraft=yes&profile=eCQM%20Update%202019-05-10&ticket=ST-6419041-ssqjTPn9sQNaFyuCG47h-cas + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!p/iqmegLY0b1oD7NtNHn4GsLooFbU/FzyinPOqmzOZvtZ1kAgdQUktpGha77uTQcUvDf3Mejc9d+Nk4=; + expires=Wed, 26-Jun-2019 01:33:12 GMT; path=/; Httponly; Secure + - JSESSIONID=41B07A0C53CD99C92C9C74497A06E732; Path=/vsac; HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Content-Length: + - '369615' + Date: + - Tue, 25 Jun 2019 23:33:11 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.112 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 25 Jun 2019 23:33:12 GMT recorded_with: VCR 4.0.0 diff --git a/test/fixtures/vcr_cassettes/invalid_vsac_response.yml b/test/fixtures/vcr_cassettes/invalid_vsac_response.yml index 26ddd1292..e3cdf01f5 100644 --- a/test/fixtures/vcr_cassettes/invalid_vsac_response.yml +++ b/test/fixtures/vcr_cassettes/invalid_vsac_response.yml @@ -1,52 +1,435 @@ --- http_interactions: - request: - method: post - uri: https://vsac.nlm.nih.gov/vsac/ws/Ticket + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113762.1.4.1&includeDraft=yes&profile=Latest%20eCQM body: encoding: US-ASCII - string: username=invaliduser&password=invalidpassword + string: '' headers: User-Agent: - - Typhoeus - https://github.com/typhoeus/typhoeus + - Typhoeus - https://github.com/typhoeus/typhoeus Expect: - - '' + - '' response: status: code: 401 message: '' headers: X-Frame-Options: - - SAMEORIGIN + - SAMEORIGIN X-Content-Type-Options: - - nosniff - - nosniff + - nosniff + - nosniff X-Xss-Protection: - - 1; mode=block + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!oboLjddYL8T5kk/m9OGvBt4MxRMcjkMPHX4GOZ+zdvDFxRMqognDOmLDjtHQmCo75Zk8lkp9h4+z9Dw=; + expires=Fri, 11-Jan-2019 20:37:11 GMT; path=/; Httponly; Secure + - JSESSIONID=8137DC9FBB05463997CC71AC9676F888;path=/vsac;HttpOnly;Secure Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate + - no-cache, no-store, max-age=0, must-revalidate Pragma: - - no-cache + - no-cache Expires: - - '0' + - '0' Content-Type: - - text/plain;charset=utf-8 - Transfer-Encoding: - - chunked + - text/xml;charset=utf-8 Date: - - Tue, 16 Jul 2019 11:59:19 GMT + - Fri, 11 Jan 2019 18:37:10 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 16 Jul 2019 11:59:19 GMT +- request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.114222.4.11.836&includeDraft=yes&profile=Latest%20eCQM + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block Set-Cookie: - - BIGipServervsacweb_p=!eRqM2NtZ2n18tE3NtNHn4GsLooFbU14UxvXhOnb5GWb4ylVopzXHM4r2xBCn3zJQUKSYkRsA1WagRrA=; - expires=Tue, 16-Jul-2019 13:59:19 GMT; path=/; Httponly; Secure + - BIGipServervsacweb_p=!oboLjddYL8T5kk/m9OGvBt4MxRMcjkMPHX4GOZ+zdvDFxRMqognDOmLDjtHQmCo75Zk8lkp9h4+z9Dw=; + expires=Fri, 11-Jan-2019 20:37:11 GMT; path=/; Httponly; Secure + - JSESSIONID=8137DC9FBB05463997CC71AC9676F888;path=/vsac;HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Date: + - Fri, 11 Jan 2019 18:37:10 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 16 Jul 2019 11:59:19 GMT +- request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.114222.4.11.837&includeDraft=yes&profile=Latest%20eCQM + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!oboLjddYL8T5kk/m9OGvBt4MxRMcjkMPHX4GOZ+zdvDFxRMqognDOmLDjtHQmCo75Zk8lkp9h4+z9Dw=; + expires=Fri, 11-Jan-2019 20:37:11 GMT; path=/; Httponly; Secure + - JSESSIONID=8137DC9FBB05463997CC71AC9676F888;path=/vsac;HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Date: + - Fri, 11 Jan 2019 18:37:10 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 16 Jul 2019 11:59:19 GMT +- request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.114222.4.11.3591&includeDraft=yes&profile=Latest%20eCQM + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!oboLjddYL8T5kk/m9OGvBt4MxRMcjkMPHX4GOZ+zdvDFxRMqognDOmLDjtHQmCo75Zk8lkp9h4+z9Dw=; + expires=Fri, 11-Jan-2019 20:37:11 GMT; path=/; Httponly; Secure + - JSESSIONID=8137DC9FBB05463997CC71AC9676F888;path=/vsac;HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Date: + - Fri, 11 Jan 2019 18:37:10 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 16 Jul 2019 11:59:19 GMT +- request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113883.3.67.1.101.1.278&includeDraft=yes&profile=Latest%20eCQM + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!oboLjddYL8T5kk/m9OGvBt4MxRMcjkMPHX4GOZ+zdvDFxRMqognDOmLDjtHQmCo75Zk8lkp9h4+z9Dw=; + expires=Fri, 11-Jan-2019 20:37:11 GMT; path=/; Httponly; Secure + - JSESSIONID=8137DC9FBB05463997CC71AC9676F888;path=/vsac;HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Date: + - Fri, 11 Jan 2019 18:37:10 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 16 Jul 2019 11:59:19 GMT +- request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113762.1.4.1078.5&includeDraft=yes&profile=Latest%20eCQM + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!oboLjddYL8T5kk/m9OGvBt4MxRMcjkMPHX4GOZ+zdvDFxRMqognDOmLDjtHQmCo75Zk8lkp9h4+z9Dw=; + expires=Fri, 11-Jan-2019 20:37:11 GMT; path=/; Httponly; Secure + - JSESSIONID=8137DC9FBB05463997CC71AC9676F888;path=/vsac;HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Date: + - Fri, 11 Jan 2019 18:37:10 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 16 Jul 2019 11:59:19 GMT +- request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113883.3.560.100.2&includeDraft=yes&profile=Latest%20eCQM + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!oboLjddYL8T5kk/m9OGvBt4MxRMcjkMPHX4GOZ+zdvDFxRMqognDOmLDjtHQmCo75Zk8lkp9h4+z9Dw=; + expires=Fri, 11-Jan-2019 20:37:11 GMT; path=/; Httponly; Secure + - JSESSIONID=8137DC9FBB05463997CC71AC9676F888;path=/vsac;HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Date: + - Fri, 11 Jan 2019 18:37:10 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 16 Jul 2019 11:59:19 GMT +- request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113883.3.67.1.101.1.279&includeDraft=yes&profile=Latest%20eCQM + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!oboLjddYL8T5kk/m9OGvBt4MxRMcjkMPHX4GOZ+zdvDFxRMqognDOmLDjtHQmCo75Zk8lkp9h4+z9Dw=; + expires=Fri, 11-Jan-2019 20:37:11 GMT; path=/; Httponly; Secure + - JSESSIONID=8137DC9FBB05463997CC71AC9676F888;path=/vsac;HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Date: + - Fri, 11 Jan 2019 18:37:10 GMT + X-Vip-Info: + - 130.14.16.40:443 + X-Pool-Info: + - "/Common/vsacweb_p 10.1.5.114 8080" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Tue, 16 Jul 2019 11:59:19 GMT +- request: + method: get + uri: https://vsac.nlm.nih.gov/vsac/svs/RetrieveMultipleValueSets?id=2.16.840.1.113883.3.67.1.101.1.269&includeDraft=yes&profile=Latest%20eCQM + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Typhoeus - https://github.com/typhoeus/typhoeus + Expect: + - '' + response: + status: + code: 401 + message: '' + headers: + X-Frame-Options: + - SAMEORIGIN + X-Content-Type-Options: + - nosniff + - nosniff + X-Xss-Protection: + - 1; mode=block + Set-Cookie: + - BIGipServervsacweb_p=!oboLjddYL8T5kk/m9OGvBt4MxRMcjkMPHX4GOZ+zdvDFxRMqognDOmLDjtHQmCo75Zk8lkp9h4+z9Dw=; + expires=Fri, 11-Jan-2019 20:37:11 GMT; path=/; Httponly; Secure + - JSESSIONID=8137DC9FBB05463997CC71AC9676F888;path=/vsac;HttpOnly;Secure + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache + Expires: + - '0' + Content-Type: + - text/xml;charset=utf-8 + Date: + - Fri, 11 Jan 2019 18:37:10 GMT X-Vip-Info: - - 130.14.16.40:443 + - 130.14.16.40:443 X-Pool-Info: - - "/Common/vsacweb_p 10.1.5.114 8080" + - "/Common/vsacweb_p 10.1.5.114 8080" Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload + - max-age=31536000; includeSubDomains; preload body: encoding: UTF-8 string: '' - http_version: + http_version: recorded_at: Tue, 16 Jul 2019 11:59:19 GMT recorded_with: VCR 4.0.0 diff --git a/test/functional/api_v1/measures_controller_test.rb b/test/functional/api_v1/measures_controller_test.rb index 837b8ea5f..1c0cd103a 100644 --- a/test/functional/api_v1/measures_controller_test.rb +++ b/test/functional/api_v1/measures_controller_test.rb @@ -86,7 +86,7 @@ class MeasuresControllerTest < ActionController::TestCase test 'should return bad_request when measure_file is not a file' do @request.env['CONTENT_TYPE'] = 'multipart/form-data' - post :create, params: {measure_file: 'not-a-file.gif', calculation_type: 'episode', vsac_tgt: 'foo', vsac_tgt_expires_at: @ticket_expires_at, vsac_query_type: 'profile'} + post :create, params: {measure_file: 'not-a-file.gif', calculation_type: 'episode', vsac_api_key: 'oof', vsac_query_type: 'profile'} assert_response :bad_request expected_response = { 'status' => 'error', 'messages' => "Invalid parameter 'measure_file': Must be a valid MAT Export." } assert_equal expected_response, JSON.parse(response.body) @@ -95,7 +95,7 @@ class MeasuresControllerTest < ActionController::TestCase test 'should return bad_request when measure_file is not a zip' do @request.env['CONTENT_TYPE'] = 'multipart/form-data' not_zip_file = fixture_file_upload(File.join('test','fixtures','measures','CMS160v6','cqm_measures','CMS160v6.json')) - post :create, params: {measure_file: not_zip_file, calculation_type: 'episode', vsac_tgt: 'foo', vsac_tgt_expires_at: @ticket_expires_at, vsac_query_type: 'profile'} + post :create, params: {measure_file: not_zip_file, calculation_type: 'episode', vsac_api_key: 'oof', vsac_query_type: 'profile'} assert_response :bad_request expected_response = { 'status' => 'error', 'messages' => "Invalid parameter 'measure_file': Must be a valid MAT Export." } assert_equal expected_response, JSON.parse(response.body) @@ -104,7 +104,7 @@ class MeasuresControllerTest < ActionController::TestCase test 'should return bad_request when the measure zip is not a MAT Export' do measure_file = fixture_file_upload(File.join('test','fixtures','cql_measure_exports','special_measures','not_mat_export.zip'),'application/zip') @request.env['CONTENT_TYPE'] = 'multipart/form-data' - post :create, params: {measure_file: measure_file, calculation_type: 'episode', vsac_tgt: 'foo', vsac_tgt_expires_at: @ticket_expires_at, vsac_query_type: 'profile'} + post :create, params: {measure_file: measure_file, calculation_type: 'episode', vsac_api_key: 'oof', vsac_query_type: 'profile'} assert_response :bad_request expected_response = { 'status' => 'error', 'messages' => "Invalid parameter 'measure_file': Must be a valid MAT Export." } assert_equal expected_response, JSON.parse(response.body) @@ -113,7 +113,7 @@ class MeasuresControllerTest < ActionController::TestCase test 'should return bad_request when calculation_type is invalid' do measure_file = fixture_file_upload(File.join('test','fixtures','cql_measure_exports','CMS52_v5_4_Artifacts.zip'),'application/zip') @request.env['CONTENT_TYPE'] = 'multipart/form-data' - post :create, params: {measure_file: measure_file, calculation_type: 'addition', vsac_tgt: 'foo', vsac_tgt_expires_at: @ticket_expires_at, vsac_query_type: 'profile'} + post :create, params: {measure_file: measure_file, calculation_type: 'addition', vsac_api_key: 'oof', vsac_query_type: 'profile'} assert_response :bad_request expected_response = { 'status' => 'error', 'messages' => "Invalid parameter 'calculation_type': Must be one of: episode, patient." } assert_equal expected_response, JSON.parse(response.body) @@ -138,8 +138,7 @@ class MeasuresControllerTest < ActionController::TestCase VCR.use_cassette('api_valid_vsac_response', @vcr_options) do # get ticket_granting_ticket api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'patient'} + post :create, params: {vsac_api_key: 'testApi', vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', measure_file: measure_file, calculation_type: 'patient'} assert_response :success expected_response = { 'status' => 'success', 'url' => '/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076'} assert_equal expected_response, JSON.parse(response.body) @@ -160,13 +159,12 @@ class MeasuresControllerTest < ActionController::TestCase VCR.use_cassette('api_valid_vsac_response_dup_measure', @vcr_options) do # get ticket_granting_ticket api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'patient'} + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', measure_file: measure_file, calculation_type: 'patient'} assert_response :success expected_response = { 'status' => 'success', 'url' => '/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076'} assert_equal expected_response, JSON.parse(response.body) - post :create, params: {vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'patient'} + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', measure_file: measure_file, calculation_type: 'patient'} assert_response :conflict expected_response = { 'status' => 'error', 'messages' => 'A measure with this HQMF Set ID already exists.', 'url' => '/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076'} assert_equal expected_response, JSON.parse(response.body) @@ -179,8 +177,8 @@ class MeasuresControllerTest < ActionController::TestCase VCR.use_cassette('api_valid_vsac_response_def_titles', @vcr_options) do # get ticket_granting_ticket api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'patient'} + + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', measure_file: measure_file, calculation_type: 'patient'} assert_response :ok expected_response = { 'status' => 'success', 'url' => '/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076'} assert_equal expected_response, JSON.parse(response.body) @@ -202,8 +200,8 @@ class MeasuresControllerTest < ActionController::TestCase VCR.use_cassette('api_valid_vsac_response_provided_titles', @vcr_options) do # get ticket_granting_ticket api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'episode', population_titles: ['First Pop', 'First Strat', 'Second Strat', 'Third Strat']} + + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', measure_file: measure_file, calculation_type: 'episode', population_titles: ['First Pop', 'First Strat', 'Second Strat', 'Third Strat']} assert_response :ok expected_response = { 'status' => 'success', 'url' => '/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076'} assert_equal expected_response, JSON.parse(response.body) @@ -224,8 +222,7 @@ class MeasuresControllerTest < ActionController::TestCase VCR.use_cassette('api_valid_vsac_response_initial', @vcr_options) do # get ticket_granting_ticket api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'episode', population_titles: ['First Pop', 'First Strat', 'Second Strat', 'Third Strat']} + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', measure_file: measure_file, calculation_type: 'episode', population_titles: ['First Pop', 'First Strat', 'Second Strat', 'Third Strat']} assert_response :ok expected_response = { 'status' => 'success', 'url' => '/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076'} assert_equal expected_response, JSON.parse(response.body) @@ -245,8 +242,8 @@ class MeasuresControllerTest < ActionController::TestCase VCR.use_cassette('api_valid_vsac_response_update', @vcr_options) do # get ticket_granting_ticket api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - put :update, params: {id: '4DC3E7AA-8777-4749-A1E4-37E942036076', vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file1, calculation_type: 'episode', population_titles: %w[Foo bar baz bam]} + + put :update, params: {id: '4DC3E7AA-8777-4749-A1E4-37E942036076', vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', measure_file: measure_file1, calculation_type: 'episode', population_titles: %w[Foo bar baz bam]} assert_response :ok expected_response = { 'status' => 'success', 'url' => '/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076' } assert_equal expected_response, JSON.parse(response.body) @@ -265,8 +262,8 @@ class MeasuresControllerTest < ActionController::TestCase @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('api_invalid_release_vsac_response', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {vsac_query_type: 'release', vsac_query_release: 'Fake 1234', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'episode'} + + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'release', vsac_query_release: 'Fake 1234', vsac_query_measure_defined: 'true', measure_file: measure_file, calculation_type: 'episode'} assert_response :bad_request expected_response = {'status'=>'error', 'messages'=>'VSAC value set (2.16.840.1.113883.3.117.1.7.1.87) not found or is empty. Please verify that you are using the correct profile or release and have VSAC authoring permissions if you are requesting draft value sets.'} assert_equal expected_response, JSON.parse(response.body) @@ -277,10 +274,9 @@ class MeasuresControllerTest < ActionController::TestCase measure_file = fixture_file_upload(File.join('test','fixtures','cqm_measure_exports','CMS903v0.zip'),'application/zip') @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('api_invalid_ticket_vsac_response', @vcr_options) do - ticket = 'foo' - post :create, params: {vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'episode'} + post :create, params: {vsac_api_key: 'oof', measure_file: measure_file, calculation_type: 'episode'} assert_response :bad_request - expected_response = {'status'=>'error', 'messages'=>'VSAC session expired. Please try again.'} + expected_response = {'status'=>'error', 'messages'=>'VSAC credentials were invalid.'} assert_equal expected_response, JSON.parse(response.body) end end @@ -290,8 +286,8 @@ class MeasuresControllerTest < ActionController::TestCase @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('api_missing_vs_vsac_response', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'episode'} + + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', measure_file: measure_file, calculation_type: 'episode'} assert_response :bad_request expected_response = {'status'=>'error', 'messages'=>'Measure loading process encountered error: The HQMF file references the following valuesets not present in the CQL: ["2.16.840.1.113883.3.464.1003.106.12.1005"]'} assert_equal expected_response, JSON.parse(response.body) @@ -303,8 +299,7 @@ class MeasuresControllerTest < ActionController::TestCase @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('api_valid_vsac_response_non_exist_measure', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - put :update, params: {id: '762B1B52-40BF-4596-B34F-4963188E7FF7', vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_update_file, calculation_type: 'episode'} + put :update, params: {id: '762B1B52-40BF-4596-B34F-4963188E7FF7', vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_measure_defined: 'true', measure_file: measure_update_file, calculation_type: 'episode'} assert_response :not_found expected_response = { 'status' => 'error', 'messages' => 'No measure found for this HQMF Set ID.'} assert_equal expected_response, JSON.parse(response.body) @@ -318,9 +313,8 @@ class MeasuresControllerTest < ActionController::TestCase @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('api_incorrect_hqmf_id_vsac_response', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {measure_file: measure_file, calculation_type: 'episode', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at} + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], measure_file: measure_file, calculation_type: 'episode'} assert_response :success expected_response = { 'status' => 'success', 'url' => '/api_v1/measures/4DC3E7AA-8777-4749-A1E4-37E942036076'} assert_equal expected_response, JSON.parse(response.body) @@ -338,8 +332,7 @@ class MeasuresControllerTest < ActionController::TestCase @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('api_incorrect_hqmf_vsac_response', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {measure_file: measure_file, calculation_type: 'episode', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at} + post :create, params: {measure_file: measure_file, calculation_type: 'episode', vsac_api_key: ENV['VSAC_API_KEY'], } assert_response :internal_server_error expected_response = {'status'=>'error', 'messages'=>'The measure could not be loaded, Bonnie has encountered an error while trying to load the measure.'} assert_equal expected_response, JSON.parse(response.body) @@ -351,8 +344,7 @@ class MeasuresControllerTest < ActionController::TestCase @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('api_ccdelookback_vsac_response', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {vsac_query_measure_defined: 'false', vsac_query_include_draft: 'false', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'episode', calculate_sdes: 'true'} + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_measure_defined: 'false', vsac_query_include_draft: 'false', measure_file: measure_file, calculation_type: 'episode', calculate_sdes: 'true'} assert_response :success measure = CQM::Measure.where({hqmf_set_id: 'FA75DE85-A934-45D7-A2F7-C700A756078B'}).first assert_equal true, measure.calculate_sdes @@ -364,8 +356,7 @@ class MeasuresControllerTest < ActionController::TestCase @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('api_release_ccdelookback_vsac_response', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] - post :create, params: {vsac_query_type: 'release', vsac_query_measure_defined: 'true', vsac_tgt: ticket, vsac_tgt_expires_at: @ticket_expires_at, measure_file: measure_file, calculation_type: 'episode', calculate_sdes: 'false'} + post :create, params: {vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'release', vsac_query_measure_defined: 'true', measure_file: measure_file, calculation_type: 'episode', calculate_sdes: 'false'} assert_response :success measure = CQM::Measure.where({hqmf_set_id: 'FA75DE85-A934-45D7-A2F7-C700A756078B'}).first assert_equal false, measure.calculate_sdes @@ -389,8 +380,8 @@ class MeasuresControllerTest < ActionController::TestCase @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('valid_vsac_response_composite_api_initial', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] post :create, params: { + vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'eCQM Update 2020-05-07', vsac_query_include_draft: 'false', @@ -413,8 +404,8 @@ class MeasuresControllerTest < ActionController::TestCase @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('valid_vsac_response_composite_api_again', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] post :update, params: { + vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', id: '244B4F52-C9CA-45AA-8BDB-2F005DA05BFC', vsac_query_profile: 'Latest eCQM', @@ -444,16 +435,14 @@ class << measure_file @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('valid_vsac_response_bad_composite_api', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] post :create, params: { + vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_include_draft: 'false', vsac_query_measure_defined: 'true', measure_file: measure_file, - calculation_type: 'patient', - vsac_tgt: ticket, - vsac_tgt_expires_at: @ticket_expires_at + calculation_type: 'patient' } end @@ -470,16 +459,14 @@ class << measure_file @request.env['CONTENT_TYPE'] = 'multipart/form-data' VCR.use_cassette('valid_vsac_response_bad_composite_api', @vcr_options) do api = Util::VSAC::VSACAPI.new(config: APP_CONFIG['vsac'], api_key: ENV['VSAC_API_KEY']) - ticket = api.ticket_granting_ticket[:ticket] post :create, params: { + vsac_api_key: ENV['VSAC_API_KEY'], vsac_query_type: 'profile', vsac_query_profile: 'Latest eCQM', vsac_query_include_draft: 'false', vsac_query_measure_defined: 'true', measure_file: measure_file, - calculation_type: 'patient', - vsac_tgt: ticket, - vsac_tgt_expires_at: @ticket_expires_at + calculation_type: 'patient' } end assert_response :bad_request diff --git a/test/functional/measures_controller_test.rb b/test/functional/measures_controller_test.rb index 6d8f83c3d..4fe16531c 100644 --- a/test/functional/measures_controller_test.rb +++ b/test/functional/measures_controller_test.rb @@ -12,7 +12,7 @@ class MeasuresControllerTest < ActionController::TestCase dump_database users_set = File.join('users', 'base_set') patients_set = File.join('cqm_patients', 'CMS903v0') - strat_measure_patients_set = File.join('cqm_patients', 'CMSv0') + strat_measure_patients_set = File.join('cqm_patients', 'CMSv0') load_measure_fixtures_from_folder(File.join('measures', 'CMS160v6'), @user) collection_fixtures(users_set, patients_set, strat_measure_patients_set) @user = User.by_email('bonnie@example.com').first @@ -234,8 +234,8 @@ def teardown end test 'upload MAT with invalid VSAC creds' do - # This cassette represents an exchange with the VSAC authentication server that - # results in an unauthorized response. This cassette is used in measures_controller_test.rb + # This cassette represents an exchange with VSAC that results in an unauthorized response. + # This cassette is used in measures_controller_test.rb VCR.use_cassette('invalid_vsac_response', @vcr_options) do # Ensure measure is not loaded to begin with @@ -287,7 +287,7 @@ def teardown end end - test 'upload MAT with no VSAC creds or ticket_granting_ticket in session' do + test 'upload MAT with no VSAC creds in session' do # Ensure measure is not loaded to begin with measure = CQM::Measure.where({hqmf_set_id: '762B1B52-40BF-4596-B34F-4963188E7FF7'}).first assert_nil measure @@ -574,6 +574,7 @@ class << measure_file vsac_query_profile: 'Latest eCQM', vsac_query_include_draft: 'false', vsac_query_measure_defined: 'true', + vsac_api_key: ENV['VSAC_API_KEY'], measure_file: update_measure_file, measure_type: 'ep', calculation_type: 'patient' diff --git a/test/functional/vsac_util_controller_test.rb b/test/functional/vsac_util_controller_test.rb index 542b63145..1ee0977ed 100644 --- a/test/functional/vsac_util_controller_test.rb +++ b/test/functional/vsac_util_controller_test.rb @@ -54,37 +54,10 @@ class VsacUtilControllerTest < ActionController::TestCase test "vsac auth valid" do # The ticket field was taken from the vcr_cassettes/valid_vsac_response file - session[:vsac_tgt] = {ticket: "ST-67360-HgEfelIvwUQ3zz3X39fg-cas", expires: Time.now.utc + 27000} + session[:vsac_api_key] = 'somethingDecent' get :auth_valid assert_response :ok assert_equal true, JSON.parse(response.body)['valid'] end - - test "vsac auth invalid" do - # Time is past expired - # The ticket field was taken from the vcr_cassettes/valid_vsac_response file - session[:vsac_tgt] = {ticket: "ST-67360-HgEfelIvwUQ3zz3X39fg-cas", expires: Time.now.utc - 27000} - get :auth_valid - - assert_response :ok - assert_equal false, JSON.parse(response.body)['valid'] - end - - test "force expire vsac session" do - # The ticket field was taken from the vcr_cassettes/valid_vsac_response file - session[:vsac_tgt] = {ticket: "ST-67360-HgEfelIvwUQ3zz3X39fg-cas", expires: Time.now.utc + 27000} - post :auth_expire - - assert_response :ok - assert_equal "{}", response.body - - assert_nil session[:vsac_tgt] - - # Assert that vsac_auth_valid returns that vsac session is invalid - get :auth_valid - - assert_response :ok - assert_equal false, JSON.parse(response.body)['valid'] - end end