diff --git a/app/api/routers/assessments.py b/app/api/routers/assessments.py index bc85648..2d582f0 100644 --- a/app/api/routers/assessments.py +++ b/app/api/routers/assessments.py @@ -3,7 +3,7 @@ from ..models import DataElementURI, VocabLabelsResponse from . import route_factory -EXTERNAL_VOCAB = "cogatlas" +EXTERNAL_VOCAB = "snomed_assessment" router = APIRouter(prefix="/assessments", tags=["assessments"]) router.add_api_route( @@ -17,7 +17,9 @@ router.add_api_route( path="/vocab", endpoint=route_factory.create_get_vocab_handler( - external_vocab=EXTERNAL_VOCAB, vocab_name="Cognitive Atlas Tasks" + external_vocab=EXTERNAL_VOCAB, + vocab_name="SNOMED Assessment", + namespace_prefix="snomed", ), methods=["GET"], response_model=VocabLabelsResponse, diff --git a/app/api/routers/diagnoses.py b/app/api/routers/diagnoses.py index 5844852..66b0b9d 100644 --- a/app/api/routers/diagnoses.py +++ b/app/api/routers/diagnoses.py @@ -3,7 +3,7 @@ from ..models import DataElementURI, VocabLabelsResponse from . import route_factory -EXTERNAL_VOCAB = "snomed" +EXTERNAL_VOCAB = "snomed_disorder" router = APIRouter(prefix="/diagnoses", tags=["diagnoses"]) router.add_api_route( @@ -17,7 +17,9 @@ router.add_api_route( path="/vocab", endpoint=route_factory.create_get_vocab_handler( - external_vocab=EXTERNAL_VOCAB, vocab_name="SNOMED CT" + external_vocab=EXTERNAL_VOCAB, + vocab_name="SNOMED Disorder", + namespace_prefix="snomed", ), methods=["GET"], response_model=VocabLabelsResponse, diff --git a/app/api/routers/route_factory.py b/app/api/routers/route_factory.py index c47e87e..c4c58d8 100644 --- a/app/api/routers/route_factory.py +++ b/app/api/routers/route_factory.py @@ -23,7 +23,9 @@ async def get_instances(request: Request): return get_instances -def create_get_vocab_handler(external_vocab: str, vocab_name: str): +def create_get_vocab_handler( + external_vocab: str, vocab_name: str, namespace_prefix: str +): """Create the handler function (path function) for the `/vocab` endpoint of an attribute router.""" async def get_vocab(request: Request): @@ -36,7 +38,7 @@ async def get_vocab(request: Request): external_vocab ], vocabulary_name=vocab_name, - namespace_prefix=external_vocab, + namespace_prefix=namespace_prefix, ) return get_vocab diff --git a/app/api/utility.py b/app/api/utility.py index aaf7426..0f3309c 100644 --- a/app/api/utility.py +++ b/app/api/utility.py @@ -3,13 +3,10 @@ import json import os import textwrap -import warnings from collections import namedtuple from pathlib import Path from typing import Optional -import httpx - # Request constants EnvVar = namedtuple("EnvVar", ["name", "val"]) @@ -47,7 +44,6 @@ } CONTEXT = { - "cogatlas": "https://www.cognitiveatlas.org/task/id/", "nb": "http://neurobagel.org/vocab/", "nbg": "http://neurobagel.org/graph/", # TODO: Check if we still need this namespace. "ncit": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#", @@ -451,54 +447,25 @@ def load_json(path: Path) -> dict: return json.load(f) -def fetch_and_save_cogatlas(output_path: Path): +def create_snomed_assessment_lookup(output_path: Path): """ - Fetches the Cognitive Atlas vocabulary using its native Task API and writes term ID-label mappings to a temporary lookup file. - If the API request fails, a backup copy of the vocabulary is used instead. + Reads in a file of assessment terms from the SNOMED vocabulary and writes term ID-label mappings to a temporary lookup file. - Saves a JSON with keys corresponding to Cognitive Atlas task IDs and values corresponding to human-readable task names. + Saves a JSON with keys corresponding to SNOMED IDs and values corresponding to human-readable term names. Parameters ---------- output_path : Path File path to store output vocabulary lookup file. """ - api_url = "https://www.cognitiveatlas.org/api/v-alpha/task?format=json" - - try: - response = httpx.get(url=api_url) - if response.is_success: - vocab = response.json() - else: - warnings.warn( - f""" - The API was unable to fetch the Cognitive Atlas task vocabulary (https://www.cognitiveatlas.org/tasks/a/) from the source and will default to using a local backup copy of the vocabulary instead. - - Details of the response from the source: - Status code {response.status_code} - {response.reason_phrase}: {response.text} - """ - ) - # Use backup copy of the raw vocabulary JSON - vocab = load_json(BACKUP_VOCAB_DIR / "cogatlas_task.json") - except httpx.NetworkError as exc: - warnings.warn( - f"""" - Fetching of the Cognitive Atlas task vocabulary (https://www.cognitiveatlas.org/tasks/a/) from the source failed due to a network error. - The API will default to using a local backup copy of the vocabulary instead. - - Error: {exc} - """ - ) - # Use backup copy of the raw vocabulary JSON - vocab = load_json(BACKUP_VOCAB_DIR / "cogatlas_task.json") + vocab = load_json(BACKUP_VOCAB_DIR / "snomed_assessment.json") - term_labels = {term["id"]: term["name"] for term in vocab} + term_labels = {term["identifier"][7:]: term["label"] for term in vocab} with open(output_path, "w") as f: f.write(json.dumps(term_labels, indent=2)) -def create_snomed_term_lookup(output_path: Path): +def create_snomed_disorder_lookup(output_path: Path): """ Reads in a file of disorder terms from the SNOMED CT vocabulary and writes term ID-label mappings to a temporary lookup file. diff --git a/app/main.py b/app/main.py index 103f630..6863c07 100644 --- a/app/main.py +++ b/app/main.py @@ -124,15 +124,19 @@ async def fetch_vocabularies_to_temp_dir(): app.state.vocab_dir_path = Path(app.state.vocab_dir.name) app.state.vocab_lookup_paths = {} - app.state.vocab_lookup_paths["cogatlas"] = ( - app.state.vocab_dir_path / "cogatlas_task_term_labels.json" + app.state.vocab_lookup_paths["snomed_assessment"] = ( + app.state.vocab_dir_path / "snomedct_assessment_term_labels.json" ) - app.state.vocab_lookup_paths["snomed"] = ( + app.state.vocab_lookup_paths["snomed_disorder"] = ( app.state.vocab_dir_path / "snomedct_disorder_term_labels.json" ) - util.fetch_and_save_cogatlas(app.state.vocab_lookup_paths["cogatlas"]) - util.create_snomed_term_lookup(app.state.vocab_lookup_paths["snomed"]) + util.create_snomed_assessment_lookup( + app.state.vocab_lookup_paths["snomed_assessment"] + ) + util.create_snomed_disorder_lookup( + app.state.vocab_lookup_paths["snomed_disorder"] + ) @app.on_event("shutdown") diff --git a/docs/default_neurobagel_query.rq b/docs/default_neurobagel_query.rq index f7e6ce5..4023828 100644 --- a/docs/default_neurobagel_query.rq +++ b/docs/default_neurobagel_query.rq @@ -1,4 +1,3 @@ -PREFIX cogatlas: PREFIX nb: PREFIX nbg: PREFIX ncit: diff --git a/tests/test_app_events.py b/tests/test_app_events.py index 0cea9a2..a70df24 100644 --- a/tests/test_app_events.py +++ b/tests/test_app_events.py @@ -1,6 +1,5 @@ """Test events occurring on app startup or shutdown.""" -import json import os import warnings @@ -126,99 +125,8 @@ def test_stored_vocab_lookup_file_created_on_startup( ): """Test that on startup, a non-empty temporary lookup file is created for term ID-label mappings for the locally stored SNOMED CT vocabulary.""" with test_app: - term_labels_path = test_app.app.state.vocab_lookup_paths["snomed"] + term_labels_path = test_app.app.state.vocab_lookup_paths[ + "snomed_disorder" + ] assert term_labels_path.exists() assert term_labels_path.stat().st_size > 0 - - -@pytest.mark.filterwarnings("ignore:.*NB_API_ALLOWED_ORIGINS") -def test_external_vocab_is_fetched_on_startup( - test_app, monkeypatch, set_test_credentials, disable_auth -): - """ - Tests that on startup, a GET request is made to the Cognitive Atlas API and that when the request succeeds, - the term ID-label mappings from the returned vocab are stored in a temporary lookup file. - """ - mock_vocab_json = [ - { - "creation_time": 1689609836, - "last_updated": 1689609836, - "name": "Generalized Self-Efficacy Scale", - "definition_text": "The original Generalized Self-Efficacy Scale contains 10 items designed to tap into a global sense of self-efficacy, or belief of an individual in his or her ability (e.g., \u201cI can always solve difficult problems if I try hard enough,\u201d and \u201cI can usually handle whatever comes my way.\u201d) The revised version here includes these 10 items and two, which are repeated and reversed to examine acquiescence bias. Response options range from 1, never true, to 7, always true. Higher scores indicate greater generalized self-efficacy.", - "id": "tsk_p7cabUkVvQPBS", - }, - { - "creation_time": 1689610375, - "last_updated": 1689610375, - "name": "Verbal Interference Test", - "definition_text": "The Verbal Interference Test is a behavioral assessment of cognitive regulation. In this task participants are presented with visual word stimuli that appear with incongruent text and color meaning (e.g., the word \u201cRED\u201d printed in blue, the word \u201cBLUE\u201d printed in green, the word \u201cGREEN\u201d printed in red). There are two phases of the task: Name (Part I) and Color (Part II). In the Name phase, participants are asked to identify the meaning of the word (e.g., red is the correct answer for the word \u201cRED\u201d printed in blue). In the Color phase, participants are asked to identify the color in which the word is printed (e.g., blue is the correct answer for the word \u201cRED\u201d printed in blue). This test assesses aspects of inhibition and interference corresponding to those indexed by the Stroop test.", - "id": "tsk_ccTKYnmv7tOZY", - }, - ] - - def mock_httpx_get(**kwargs): - return httpx.Response(status_code=200, json=mock_vocab_json) - - monkeypatch.setattr(httpx, "get", mock_httpx_get) - - with test_app: - term_labels_path = test_app.app.state.vocab_lookup_paths["cogatlas"] - assert term_labels_path.exists() - - with open(term_labels_path, "r") as f: - term_labels = json.load(f) - - assert term_labels == { - "tsk_p7cabUkVvQPBS": "Generalized Self-Efficacy Scale", - "tsk_ccTKYnmv7tOZY": "Verbal Interference Test", - } - - -@pytest.mark.filterwarnings("ignore:.*NB_API_ALLOWED_ORIGINS") -def test_failed_vocab_fetching_on_startup_raises_warning( - test_app, monkeypatch, set_test_credentials, disable_auth -): - """ - Tests that when a GET request to the Cognitive Atlas API has a non-success response code (e.g., due to service being unavailable), - a warning is raised and that a term label lookup file is still created using a backup copy of the vocab. - """ - - def mock_httpx_get(**kwargs): - return httpx.Response( - status_code=503, json={}, text="Some error message" - ) - - monkeypatch.setattr(httpx, "get", mock_httpx_get) - - with pytest.warns(UserWarning) as w: - with test_app: - assert test_app.app.state.vocab_lookup_paths["cogatlas"].exists() - - assert any( - "unable to fetch the Cognitive Atlas task vocabulary (https://www.cognitiveatlas.org/tasks/a/) from the source and will default to using a local backup copy" - in str(warn.message) - for warn in w - ) - - -@pytest.mark.filterwarnings("ignore:.*NB_API_ALLOWED_ORIGINS") -def test_network_error_on_startup_raises_warning( - test_app, monkeypatch, set_test_credentials, disable_auth -): - """ - Tests that when a GET request to the Cognitive Atlas API fails due to a network error (i.e., while issuing the request), - a warning is raised and that a term label lookup file is still created using a backup copy of the vocab. - """ - - def mock_httpx_get(**kwargs): - raise httpx.ConnectError("Some network error") - - monkeypatch.setattr(httpx, "get", mock_httpx_get) - - with pytest.warns(UserWarning) as w: - with test_app: - assert test_app.app.state.vocab_lookup_paths["cogatlas"].exists() - - assert any( - "failed due to a network error" in str(warn.message) for warn in w - ) diff --git a/tests/test_attribute_factory_routes.py b/tests/test_attribute_factory_routes.py index 1d3c7c1..ef0a055 100644 --- a/tests/test_attribute_factory_routes.py +++ b/tests/test_attribute_factory_routes.py @@ -26,19 +26,19 @@ def test_get_instances_endpoint_with_vocab_lookup( { "termURL": { "type": "uri", - "value": "https://www.cognitiveatlas.org/task/id/tsk_U9gDp8utahAfO", + "value": "http://purl.bioontology.org/ontology/SNOMEDCT/1284852002", } }, { "termURL": { "type": "uri", - "value": "https://www.cognitiveatlas.org/task/id/not_found_id", + "value": "http://purl.bioontology.org/ontology/SNOMEDCT/not_found_id", } }, { "termURL": { "type": "uri", - "value": "https://www.notanatlas.org/task/id/tsk_alz5hjlUXp4WY", + "value": "http://notpurl.bioontology.org/ontology/SNOMEDCT/123456789", } }, ] @@ -60,10 +60,10 @@ def mock_httpx_post(**kwargs): assert response.json() == { "nb:Assessment": [ { - "TermURL": "cogatlas:tsk_U9gDp8utahAfO", - "Label": "Pittsburgh Stress Battery", + "TermURL": "snomed:1284852002", + "Label": "Numeric Pain Rating Scale", }, - {"TermURL": "cogatlas:not_found_id", "Label": None}, + {"TermURL": "snomed:not_found_id", "Label": None}, ] } @@ -123,8 +123,8 @@ def mock_httpx_post(**kwargs): @pytest.mark.parametrize( "attribute, expected_vocab_name, expected_namespace_pfx", [ - ("assessments", "Cognitive Atlas Tasks", "cogatlas"), - ("diagnoses", "SNOMED CT", "snomed"), + ("assessments", "SNOMED Assessment", "snomed"), + ("diagnoses", "SNOMED Disorder", "snomed"), ], ) def test_get_vocab_endpoint( diff --git a/vocab/backup_external/snomed_assessment.json b/vocab/backup_external/snomed_assessment.json new file mode 100644 index 0000000..5f6dba1 --- /dev/null +++ b/vocab/backup_external/snomed_assessment.json @@ -0,0 +1,9346 @@ +[ + { + "identifier": "snomed:1231439001", + "label": "Calgary Depression Scale for Schizophrenia" + }, + { + "identifier": "snomed:1231505003", + "label": "IDDSI-FDS - International Dysphagia Diet Standardisation Initiative Functional Diet Scale" + }, + { + "identifier": "snomed:1237453009", + "label": "IDDSI (International Dysphagia Diet Standardisation Initiative) Framework" + }, + { + "identifier": "snomed:1284852002", + "label": "Numeric Pain Rating Scale" + }, + { + "identifier": "snomed:1363071000000103", + "label": "Medication Adherence Report Scale 5-item" + }, + { + "identifier": "snomed:1363131000000101", + "label": "Problem Areas in Diabetes" + }, + { + "identifier": "snomed:1373391000000108", + "label": "Problem Areas in Diabetes 11-item" + }, + { + "identifier": "snomed:1373411000000108", + "label": "Problem Areas in Diabetes 5-item" + }, + { + "identifier": "snomed:1373441000000109", + "label": "Problem Areas in Diabetes 1-item" + }, + { + "identifier": "snomed:1373521000000101", + "label": "Type 1 Diabetes Distress Scale" + }, + { + "identifier": "snomed:1148241000000105", + "label": "Greene Climacteric Scale" + }, + { + "identifier": "snomed:1198131000000101", + "label": "Patient Complexity Instrument" + }, + { + "identifier": "snomed:1259215003", + "label": "Maelor Scale" + }, + { + "identifier": "snomed:1287374007", + "label": "Portuguese Registry of Acute Coronary Syndromes risk score" + }, + { + "identifier": "snomed:1287375008", + "label": "Nutritional Risk Screening 2002" + }, + { + "identifier": "snomed:1287376009", + "label": "Minnesota Living with Heart Failure Questionnaire" + }, + { + "identifier": "snomed:1287377000", + "label": "Mechanism, Glasgow Coma Scale, Age, Pressure score" + }, + { + "identifier": "snomed:1287387001", + "label": "Killip classification" + }, + { + "identifier": "snomed:1290681000000106", + "label": "Monkeypox severity scale" + }, + { + "identifier": "snomed:1366261000000107", + "label": "IPRA (in possession risk assessment) - patient on medication" + }, + { + "identifier": "snomed:1373991000000107", + "label": "Diabetes management self-efficacy scale United Kingdom 15-item" + }, + { + "identifier": "snomed:1423591000000108", + "label": "Insulin Treatment Appraisal Scale" + }, + { + "identifier": "snomed:1423651000000101", + "label": "Electronic Frailty Index 2" + }, + { + "identifier": "snomed:1443841000000103", + "label": "Ipswich Touch Test" + }, + { + "identifier": "snomed:1464321000000108", + "label": "DSMQ - Diabetes Self Management Questionnaire" + }, + { + "identifier": "snomed:1464351000000103", + "label": "DSMQ-R - Diabetes Self Management Questionnaire - Revised" + }, + { + "identifier": "snomed:149601000000102", + "label": "Simon Broome diagnostic criteria for familial hypercholesterolaemia" + }, + { + "identifier": "snomed:149841000000100", + "label": "IPRA (in possession risk assessment) - patient not on medication" + }, + { + "identifier": "snomed:1638421000000100", + "label": "City Birth Trauma Scale" + }, + { + "identifier": "snomed:1658881000000100", + "label": "Nisonger Child Behaviour Rating Form Parent Version" + }, + { + "identifier": "snomed:1658891000000103", + "label": "Nisonger Child Behaviour Rating Form Teacher Version" + }, + { + "identifier": "snomed:1699841000000109", + "label": "FRAIL (fatigue, resistance, ambulation, illness, and loss of weight) scale" + }, + { + "identifier": "snomed:1781761000000108", + "label": "MyLungRisk questionnaire" + }, + { + "identifier": "snomed:1792021000000109", + "label": "PLCOm2012 (Prostate, Lung, Colorectal, and Ovarian modified 2012) 6-year lung cancer risk calculator for smokers" + }, + { + "identifier": "snomed:1730621000000107", + "label": "Modified Fatigue Impact Scale" + }, + { + "identifier": "snomed:1802241000000106", + "label": "RCADS-25 - Revised Children's Anxiety and Depression Scale-25" + }, + { + "identifier": "snomed:35181000087108", + "label": "Duke treadmill score angina index" + }, + { + "identifier": "snomed:568241000005104", + "label": "TWEAK (Tolerance, Worry, Eye-opener, Amnesia, K/Cut down) questionnaire" + }, + { + "identifier": "snomed:1231452006", + "label": "Standardised Assessment of Personality - Abbreviated Scale" + }, + { + "identifier": "snomed:1284908006", + "label": "Faces Pain Scale - Revised" + }, + { + "identifier": "snomed:1148511000000107", + "label": "Depression, Anxiety and Positive Outlook Scale" + }, + { + "identifier": "snomed:1179529001", + "label": "Edwards Personal Preference Schedule" + }, + { + "identifier": "snomed:1198221000000107", + "label": "Chronic Pain Values Inventory" + }, + { + "identifier": "snomed:1231438009", + "label": "Medication Adherence Rating Scale" + }, + { + "identifier": "snomed:1231440004", + "label": "Piers-Harris Children's Self-Concept Scale" + }, + { + "identifier": "snomed:1231441000", + "label": "Internet Addiction Test" + }, + { + "identifier": "snomed:1231442007", + "label": "Children's Loneliness Scale" + }, + { + "identifier": "snomed:1231443002", + "label": "Bush-Francis Catatonia Rating Scale" + }, + { + "identifier": "snomed:1231444008", + "label": "Child Behavior Checklist" + }, + { + "identifier": "snomed:1231453001", + "label": "Adolescent Life Change Event Scale" + }, + { + "identifier": "snomed:1231454007", + "label": "Hamilton Anxiety Rating Scale" + }, + { + "identifier": "snomed:1231458005", + "label": "Ways of Coping Questionnaire" + }, + { + "identifier": "snomed:1231511000", + "label": "Personality Diagnostic Questionnaire Version 4" + }, + { + "identifier": "snomed:1231512007", + "label": "Liebowitz Social Anxiety Scale" + }, + { + "identifier": "snomed:1231513002", + "label": "Conners Comprehensive Behavior Rating Scales" + }, + { + "identifier": "snomed:1231514008", + "label": "Neuropsychiatric Inventory Questionnaire" + }, + { + "identifier": "snomed:1231515009", + "label": "Social Avoidance and Distress Scale" + }, + { + "identifier": "snomed:1231516005", + "label": "Social Anxiety Scale for Children-Revised" + }, + { + "identifier": "snomed:1259216002", + "label": "Pressure Ulcer Scale for Healing" + }, + { + "identifier": "snomed:1284895003", + "label": "EDIN - \u00c9chelle de Douleur et d'Inconfort du Nouveau-n\u00e9" + }, + { + "identifier": "snomed:1284900004", + "label": "Neonatal Infant Pain Scale" + }, + { + "identifier": "snomed:1284903002", + "label": "Neonatal Pain Assessment and Sedation Scale" + }, + { + "identifier": "snomed:1284924007", + "label": "Revised Face, Legs, Activity, Cry, Consolability scale" + }, + { + "identifier": "snomed:1287344004", + "label": "Apgar score" + }, + { + "identifier": "snomed:1287346002", + "label": "Control of Allergic Rhinitis and Asthma Test" + }, + { + "identifier": "snomed:1287347006", + "label": "Graffar index" + }, + { + "identifier": "snomed:1287348001", + "label": "Finnegan Neonatal Abstinence Scoring Tool" + }, + { + "identifier": "snomed:1287352001", + "label": "Neelon and Champagne Confusion Scale" + }, + { + "identifier": "snomed:1287354000", + "label": "Screening Tool for Risk on Nutritional Status and Growth" + }, + { + "identifier": "snomed:1287355004", + "label": "Neonatal Skin Risk Assessment Scale" + }, + { + "identifier": "snomed:1287356003", + "label": "Cincinnati Prehospital Stroke Scale" + }, + { + "identifier": "snomed:1287357007", + "label": "Strength, Assistance walking, Rising from chair, Climbing stairs and Falls questionnaire" + }, + { + "identifier": "snomed:1287358002", + "label": "National Early Warning Score" + }, + { + "identifier": "snomed:1287359005", + "label": "Rapid Arterial Occlusion Evaluation Scale" + }, + { + "identifier": "snomed:1331211000000107", + "label": "SCOFF (Sick, Control, One, Fat, Food) questionnaire" + }, + { + "identifier": "snomed:1362371000000109", + "label": "mSCOFF (modified Sick, Control, One, Fat, Food) questionnaire" + }, + { + "identifier": "snomed:1638511000000105", + "label": "Goal-Based Outcome Tool" + }, + { + "identifier": "snomed:1638761000000101", + "label": "Brief Assessment Checklist for Adolescents" + }, + { + "identifier": "snomed:1638801000000106", + "label": "Brief Assessment Checklist for Children" + }, + { + "identifier": "snomed:1638831000000100", + "label": "Behaviour Problems Inventory - Short Form" + }, + { + "identifier": "snomed:1812501000000108", + "label": "RCADS-P-25 - Revised Children's Anxiety and Depression Scale-25 Parent Version" + }, + { + "identifier": "snomed:1833091000000105", + "label": "Therapeutic Index for Local Infections score" + }, + { + "identifier": "snomed:1833111000000100", + "label": "Wound, Ischemia and foot Infection classification system" + }, + { + "identifier": "snomed:1362831000000102", + "label": "Diabetes Eating Problem Survey - Revised" + }, + { + "identifier": "snomed:591351000124102", + "label": "LEA SYMBOLS distance visual acuity chart" + }, + { + "identifier": "snomed:73041000052103", + "label": "EuroQoL five dimension five level questionnaire" + }, + { + "identifier": "snomed:620951000124109", + "label": "Personality disorder screening questionnaire" + }, + { + "identifier": "snomed:621051000124103", + "label": "Standardized assessment of personality - abbreviated scale" + }, + { + "identifier": "snomed:621121000124108", + "label": "Childhood trauma questionnaire short form" + }, + { + "identifier": "snomed:621131000124106", + "label": "Wechsler Adult Intelligence Scale fourth edition" + }, + { + "identifier": "snomed:621151000124104", + "label": "Fear of negative evaluation scale" + }, + { + "identifier": "snomed:621571000124104", + "label": "Westside test anxiety scale" + }, + { + "identifier": "snomed:621581000124101", + "label": "Cornell medical index-health questionnaire" + }, + { + "identifier": "snomed:1003471000", + "label": "Orthostatic Hypotension Questionnaire" + }, + { + "identifier": "snomed:1003686001", + "label": "Postpartum Depression Screening Scale" + }, + { + "identifier": "snomed:1024821000000102", + "label": "Mothers' Object Relations Scale - Short Form" + }, + { + "identifier": "snomed:1024961000000104", + "label": "Amyotrophic Lateral Sclerosis Functional Rating Scale - Revised" + }, + { + "identifier": "snomed:1025061000000104", + "label": "STOPP - Screening Tool of Older Person's Prescriptions" + }, + { + "identifier": "snomed:1025081000000108", + "label": "START - Screening Tool to Alert doctors to Right Treatment" + }, + { + "identifier": "snomed:1025121000000106", + "label": "Neurological Disorders Depression Inventory in Epilepsy" + }, + { + "identifier": "snomed:1025191000000109", + "label": "IPOS (Integrated Palliative care Outcome Scale) - Staff Version (3 day recall period)" + }, + { + "identifier": "snomed:1025571000000101", + "label": "Leicester Diabetes Risk Score" + }, + { + "identifier": "snomed:1025811000000109", + "label": "PsAID-9 (Psoriatic Arthritis Impact of Disease 9) questionnaire" + }, + { + "identifier": "snomed:1032411000000100", + "label": "IPOS-5 (Integrated Palliative care Outcome Scale 5) - Staff Version (3 day recall period)" + }, + { + "identifier": "snomed:1032451000000101", + "label": "Derby Outcome Measure" + }, + { + "identifier": "snomed:1033311000000102", + "label": "IPOS (Integrated Palliative care Outcome Scale) - Patient Version (3 day recall period)" + }, + { + "identifier": "snomed:1033371000000107", + "label": "IPOS-5 (Integrated Palliative care Outcome Scale 5) - Patient Version (3 day recall period)" + }, + { + "identifier": "snomed:1033391000000106", + "label": "IPOS-5 (Integrated Palliative care Outcome Scale 5) - Patient Version (1 week recall period)" + }, + { + "identifier": "snomed:1033411000000106", + "label": "IPOS (Integrated Palliative care Outcome Scale) - Patient Version (1 week recall period)" + }, + { + "identifier": "snomed:1033431000000103", + "label": "IPOS-5 (Integrated Palliative care Outcome Scale 5) - Staff Version (1 week recall period)" + }, + { + "identifier": "snomed:1033451000000105", + "label": "IPOS (Integrated Palliative care Outcome Scale) - Staff Version (1 week recall period)" + }, + { + "identifier": "snomed:1033671000000104", + "label": "Dyadic Assessment of Naturalistic Caregiver-child Experiences" + }, + { + "identifier": "snomed:1034341000000104", + "label": "QPR - Questionnaire about the Process of Recovery" + }, + { + "identifier": "snomed:1034661000000109", + "label": "DIALOG" + }, + { + "identifier": "snomed:1035241000000107", + "label": "ESQ (Experience of Service Questionnaire) self-report for 9-11 year olds" + }, + { + "identifier": "snomed:1035251000000105", + "label": "ESQ (Experience of Service Questionnaire) self-report for 12-18 year olds" + }, + { + "identifier": "snomed:1035451000000109", + "label": "CAARMS - Comprehensive Assessment of At-Risk Mental States" + }, + { + "identifier": "snomed:1036231000000106", + "label": "Child Session Rating Scale" + }, + { + "identifier": "snomed:1036421000000105", + "label": "Me and My Feelings Questionnaire" + }, + { + "identifier": "snomed:1036631000000109", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire)" + }, + { + "identifier": "snomed:1036761000000109", + "label": "SOFA (Sequential Organ Failure Assessment)" + }, + { + "identifier": "snomed:1037071000000103", + "label": "CIWA-B (Clinical Institute Withdrawal Assessment for Benzodiazepines) scale" + }, + { + "identifier": "snomed:1037941000000108", + "label": "howRthey rating scale" + }, + { + "identifier": "snomed:1038581000000106", + "label": "Lower Extremity Functional Scale" + }, + { + "identifier": "snomed:1038621000000106", + "label": "Lysholm Knee Scoring Scale" + }, + { + "identifier": "snomed:1044531000000104", + "label": "POEM - Patient-Oriented Eczema Measure" + }, + { + "identifier": "snomed:1046471000000108", + "label": "Patient-Specific Functional Scale" + }, + { + "identifier": "snomed:1047141000000109", + "label": "HARK questions" + }, + { + "identifier": "snomed:1048281000000108", + "label": "Rheumatoid Arthritis Impact of Disease questionnaire" + }, + { + "identifier": "snomed:1048551000000104", + "label": "CHAT (Comprehensive Health Assessment Tool) - Young people in contact with the Youth Offending Service" + }, + { + "identifier": "snomed:1048571000000108", + "label": "CHAT (Comprehensive Health Assessment Tool) - Young people in the Secure Estate" + }, + { + "identifier": "snomed:1049171000000105", + "label": "OPHI-II (Occupational Performance History Interview II) Version 2.1 - occupational identity scale" + }, + { + "identifier": "snomed:1049181000000107", + "label": "OPHI-II (Occupational Performance History Interview II) Version 2.1 - occupational competence scale" + }, + { + "identifier": "snomed:1049191000000109", + "label": "OPHI-II (Occupational Performance History Interview II) Version 2.1 - occupational settings (environment) scale" + }, + { + "identifier": "snomed:1052121000000102", + "label": "qSOFA - quick Sequential Organ Failure Assessment" + }, + { + "identifier": "snomed:1053081000000108", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 1 - active disturbance of social behaviour" + }, + { + "identifier": "snomed:1053091000000105", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 10 - problems with activities of daily living" + }, + { + "identifier": "snomed:1053101000000102", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 11 - problems with living conditions" + }, + { + "identifier": "snomed:1053111000000100", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 12 - problems with activities" + }, + { + "identifier": "snomed:1053121000000106", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 2 - self directed injury" + }, + { + "identifier": "snomed:1053131000000108", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 3 - problem drinking or drug use" + }, + { + "identifier": "snomed:1053141000000104", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 4 - cognitive problems" + }, + { + "identifier": "snomed:1053151000000101", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 5 - physical illness or disability problems" + }, + { + "identifier": "snomed:1053161000000103", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 6 - problems associated with hallucinations or delusions or confabulations" + }, + { + "identifier": "snomed:1053171000000105", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 7 - problems with depressive symptoms" + }, + { + "identifier": "snomed:1053181000000107", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 8 - other mental and behavioural problems" + }, + { + "identifier": "snomed:1053191000000109", + "label": "HoNOS-ABI (Health of the Nation Outcome Scales for Acquired Brain Injury) rating scale 9 - problems with relationships" + }, + { + "identifier": "snomed:1053251000000107", + "label": "CADL (Communication Activities of Daily Living) original edition" + }, + { + "identifier": "snomed:1053471000000102", + "label": "Personal Wellbeing Score rating scale" + }, + { + "identifier": "snomed:1053511000000106", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating 40" + }, + { + "identifier": "snomed:1053521000000100", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating P - interpersonal dynamics (historical)" + }, + { + "identifier": "snomed:1053531000000103", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating Q - problem drinking or drug taking (historical)" + }, + { + "identifier": "snomed:1053541000000107", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating R - antisocial attitudes likely to result in behaviour that causes a risk to others (historical)" + }, + { + "identifier": "snomed:1057281000000109", + "label": "PARR-30 (Patients at Risk of Re-hospitalisation within 30 days of discharge) algorithm" + }, + { + "identifier": "snomed:1060871000000100", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need" + }, + { + "identifier": "snomed:1060881000000103", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating A - agitated behaviour/expansive mood (historical)" + }, + { + "identifier": "snomed:1060891000000101", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating B - repeat self-harm (historical)" + }, + { + "identifier": "snomed:1060901000000100", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating C - safeguarding other children and vulnerable adults (historical)" + }, + { + "identifier": "snomed:1060911000000103", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating D - engagement (historical)" + }, + { + "identifier": "snomed:1060921000000109", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating E - vulnerability (historical)" + }, + { + "identifier": "snomed:1060931000000106", + "label": "Forensic Mental Health Clustering Tool Summary Assessments of Risk and Need rating 13" + }, + { + "identifier": "snomed:1064221000000105", + "label": "HEF - Health Equalities Framework" + }, + { + "identifier": "snomed:1064751000000107", + "label": "PASCOM-10 - Podiatric and Surgical Clinical Outcome Measurement 10" + }, + { + "identifier": "snomed:1065421000000105", + "label": "PHQ-15 - Patient Health Questionnaire 15" + }, + { + "identifier": "snomed:1076581000000105", + "label": "CPAx - Chelsea Critical Care Physical Assessment tool" + }, + { + "identifier": "snomed:1076621000000105", + "label": "PASS - Postural Assessment Scale for Stroke Patients" + }, + { + "identifier": "snomed:1077341000000105", + "label": "DiADeM (Diagnosing Advanced Dementia Mandate) Tool" + }, + { + "identifier": "snomed:1077451000000101", + "label": "Hunters Hill Marie Curie Centre Pressure Sore Risk Assessment Tool" + }, + { + "identifier": "snomed:1077491000000109", + "label": "Chalder Fatigue Scale" + }, + { + "identifier": "snomed:1077721000000102", + "label": "PURPOSE T - Pressure Ulcer Risk Primary or Secondary Evaluation Tool" + }, + { + "identifier": "snomed:1078931000000103", + "label": "Anticholinergic Cognitive Burden Scale" + }, + { + "identifier": "snomed:1079401000000109", + "label": "Foot Posture Index" + }, + { + "identifier": "snomed:1079701000000100", + "label": "Bristol Foot Score" + }, + { + "identifier": "snomed:1079731000000106", + "label": "S(AD) SAD (Size (area, depth) Sepsis, Arteriopathy, Denervation) system" + }, + { + "identifier": "snomed:1079861000000105", + "label": "Leeds Foot Impact Scale" + }, + { + "identifier": "snomed:1079951000000102", + "label": "Footwear Suitability Scale" + }, + { + "identifier": "snomed:1080041000000104", + "label": "PEDIS (Perfusion, Extent, Depth, Infection and Sensation) scoring system" + }, + { + "identifier": "snomed:1081841000000102", + "label": "DEPA (Depth, Extent, Phase and Associated etiology) Score" + }, + { + "identifier": "snomed:1081871000000108", + "label": "Swindon Foot and Ankle Questionnaire" + }, + { + "identifier": "snomed:1081901000000108", + "label": "Patient Global Impression of Improvement" + }, + { + "identifier": "snomed:1081931000000102", + "label": "PHQ - Podiatric Health Questionnaire" + }, + { + "identifier": "snomed:1081961000000107", + "label": "PSQ-10 - Patient Satisfaction Questionnaire 10" + }, + { + "identifier": "snomed:1082001000000103", + "label": "Manchester Scale for grading hallux valgus" + }, + { + "identifier": "snomed:1082031000000109", + "label": "University of Texas Wound Classification System" + }, + { + "identifier": "snomed:1082071000000106", + "label": "Foot Function Index" + }, + { + "identifier": "snomed:1082111000000100", + "label": "MOxFQ (Manchester-Oxford Foot Questionnaire) (foot)" + }, + { + "identifier": "snomed:1082141000000104", + "label": "MOxFQ (Manchester-Oxford Foot Questionnaire) (foot and ankle)" + }, + { + "identifier": "snomed:1082171000000105", + "label": "SAFE (Salford Rheumatoid Arthritis Foot Evaluation) Instrument" + }, + { + "identifier": "snomed:1082731000000107", + "label": "Irritable Bowel Syndrome - Symptom Severity Scale" + }, + { + "identifier": "snomed:1084951000000107", + "label": "Electronic Frailty Index" + }, + { + "identifier": "snomed:1085141000000105", + "label": "6CIT - Six Item Cognitive Impairment Test" + }, + { + "identifier": "snomed:1085161000000106", + "label": "QRISK2 cardiovascular disease 10 year risk calculator" + }, + { + "identifier": "snomed:1085771000000100", + "label": "QRISK3 cardiovascular disease 10 year risk calculator" + }, + { + "identifier": "snomed:1085921000000101", + "label": "SAVRY - Structured Assessment of Violence Risk in Youth" + }, + { + "identifier": "snomed:1086271000000104", + "label": "Framingham Cardiovascular Disease 10 year risk score calculator" + }, + { + "identifier": "snomed:1086761000000103", + "label": "DISCO - Diagnostic Interview for Social and Communication Disorders" + }, + { + "identifier": "snomed:1086841000000106", + "label": "ADI-R - Autism Diagnostic Interview-Revised" + }, + { + "identifier": "snomed:1087591000000100", + "label": "FeverPAIN (Fever in last 24 hours, Purulence, Attend rapidly under 3 days, Inflamed tonsils, No cough and/or coryza) Clinical Score" + }, + { + "identifier": "snomed:1088031000000106", + "label": "Abbey Pain Scale" + }, + { + "identifier": "snomed:1089951000000108", + "label": "eMRC (extended Medical Research Council) dyspnoea scale" + }, + { + "identifier": "snomed:1091031000000102", + "label": "ReQoL-10 (Recovering Quality of Life 10-item) questionnaire" + }, + { + "identifier": "snomed:1091041000000106", + "label": "ReQoL-20 (Recovering Quality of Life 20-item) questionnaire" + }, + { + "identifier": "snomed:1092451000000105", + "label": "Norris ALS (Amyotrophic Lateral Sclerosis) Scale" + }, + { + "identifier": "snomed:1092461000000108", + "label": "MRC (Medical Research Council) Muscle scale" + }, + { + "identifier": "snomed:1092601000000107", + "label": "SCAT3 - Sport Concussion Assessment Tool - 3rd edition" + }, + { + "identifier": "snomed:1092791000000107", + "label": "Palliative care phase measure" + }, + { + "identifier": "snomed:1095921000000100", + "label": "FADI - Foot and Ankle Disability Index" + }, + { + "identifier": "snomed:1095951000000105", + "label": "FADI (Foot and Ankle Disability Index) Sport" + }, + { + "identifier": "snomed:109641000000109", + "label": "Health of the Nation Outcome Scale for secure services" + }, + { + "identifier": "snomed:1097831000000103", + "label": "GOLD (Global Initiative for Chronic Obstructive Lung Disease) 2017 ABCD assessment tool" + }, + { + "identifier": "snomed:1098541000000108", + "label": "BPE - Basic Periodontal Examination" + }, + { + "identifier": "snomed:1099471000000108", + "label": "CRIES-13 - Revised Child Impact of Event Scale 13" + }, + { + "identifier": "snomed:1099561000000102", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 1 - pain/stiffness during the day" + }, + { + "identifier": "snomed:1099571000000109", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 2 - pain/stiffness during the night" + }, + { + "identifier": "snomed:1099581000000106", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 3 - walking" + }, + { + "identifier": "snomed:1099591000000108", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 4 - washing/dressing" + }, + { + "identifier": "snomed:1099601000000102", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 5 - physical activity levels" + }, + { + "identifier": "snomed:1099611000000100", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 6 - work/daily routine" + }, + { + "identifier": "snomed:1099621000000106", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 7 - social activities and hobbies" + }, + { + "identifier": "snomed:1099631000000108", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 8 - needing help" + }, + { + "identifier": "snomed:1099641000000104", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 9 - sleep" + }, + { + "identifier": "snomed:1099651000000101", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 10 - fatigue or low energy" + }, + { + "identifier": "snomed:1099661000000103", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 11 - emotional well being" + }, + { + "identifier": "snomed:1099671000000105", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 12 - understanding of your condition and any current treatment" + }, + { + "identifier": "snomed:1099681000000107", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 13 - confidence in being able to manage your symptoms" + }, + { + "identifier": "snomed:1099691000000109", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) item 14 - overall impact" + }, + { + "identifier": "snomed:1099701000000109", + "label": "MSK-HQ (Musculoskeletal Health Questionnaire) - physical activity levels - in the past week how many days have you done a total of 30 minutes or more of physical activity" + }, + { + "identifier": "snomed:1102691000000108", + "label": "RCS - Rehabilitation Complexity Scale" + }, + { + "identifier": "snomed:1102701000000108", + "label": "RCS (Rehabilitation Complexity Scale) version 2" + }, + { + "identifier": "snomed:1102711000000105", + "label": "RCS-E (Rehabilitation Complexity Scale Extended) version 12" + }, + { + "identifier": "snomed:1102721000000104", + "label": "RCS-E (Rehabilitation Complexity Scale Extended) version 13" + }, + { + "identifier": "snomed:1102731000000102", + "label": "RCS-ET - Rehabilitation Complexity Scale Extended Trauma" + }, + { + "identifier": "snomed:1103791000000109", + "label": "Revised UCLA (University of California Los Angeles) Loneliness scale" + }, + { + "identifier": "snomed:1104061000000103", + "label": "Royal College of Physicians NEWS2 (National Early Warning Score 2)" + }, + { + "identifier": "snomed:1104421000000100", + "label": "Alert Confusion Voice Pain Unresponsiveness scale" + }, + { + "identifier": "snomed:1104881000000101", + "label": "Gold Score for awareness of hypoglycaemia" + }, + { + "identifier": "snomed:1105191000000109", + "label": "NPCS (Needs and Provision Complexity Scale) version 6" + }, + { + "identifier": "snomed:110581000000109", + "label": "HoNOS-ABI - Health of the Nation Outcome Scale for acquired brain injury" + }, + { + "identifier": "snomed:1106121000000102", + "label": "Griffiths III: Griffiths Scales of Child Development 3rd Edition" + }, + { + "identifier": "snomed:1106631000000106", + "label": "Adapted ASSIST-Lite (Alcohol, Smoking and Substance Involvement Screening Test Lite)" + }, + { + "identifier": "snomed:1108821000000109", + "label": "CASQ - Cancer Appetite and Symptom Questionnaire" + }, + { + "identifier": "snomed:1108851000000104", + "label": "CNAQ - Council on Nutrition Appetite Questionnaire" + }, + { + "identifier": "snomed:1109961000000103", + "label": "SNAQ - Simplified Nutritional Appetite Questionnaire" + }, + { + "identifier": "snomed:1110001000000105", + "label": "GSRS - Gastrointestinal Symptom Rating Scale" + }, + { + "identifier": "snomed:1110031000000104", + "label": "RMNST - Royal Marsden Nutrition Screening Tool" + }, + { + "identifier": "snomed:1110061000000109", + "label": "SANSI - St Andrew's Nutrition Screening Instrument" + }, + { + "identifier": "snomed:1110181000000101", + "label": "King's Stool Chart" + }, + { + "identifier": "snomed:1110231000000108", + "label": "FAACT - Functional Assessment of Anorexia/Cachexia Therapy" + }, + { + "identifier": "snomed:1110301000000108", + "label": "A/CS-12 - Functional Assessment of Anorexia/Cachexia subscale 12 item" + }, + { + "identifier": "snomed:1126401000000107", + "label": "FES-I - Falls Efficacy Scale International" + }, + { + "identifier": "snomed:1128231000000103", + "label": "BIQ - Body Image Questionnaire" + }, + { + "identifier": "snomed:1129571000000106", + "label": "UCLA (University of California Los Angeles) Loneliness Scale (Version 3)" + }, + { + "identifier": "snomed:1129581000000108", + "label": "Three Item Loneliness Scale" + }, + { + "identifier": "snomed:1137327001", + "label": "Saint Louis University Mental Status" + }, + { + "identifier": "snomed:1144349004", + "label": "Framingham cardiovascular disease 30 year risk score" + }, + { + "identifier": "snomed:1144751002", + "label": "EuroQol five dimension three level questionnaire" + }, + { + "identifier": "snomed:1144752009", + "label": "5-item World Health Organization Well-being Index questionnaire" + }, + { + "identifier": "snomed:1144796009", + "label": "Verbal Rating Scale for pain intensity" + }, + { + "identifier": "snomed:1145071008", + "label": "Padua Prediction Score for risk of venous thromboembolism" + }, + { + "identifier": "snomed:1148422006", + "label": "Montreal Cognitive Assessment version 7.3" + }, + { + "identifier": "snomed:1148423001", + "label": "Montreal Cognitive Assessment version 8.1" + }, + { + "identifier": "snomed:1148424007", + "label": "Montreal Cognitive Assessment version 7.2" + }, + { + "identifier": "snomed:1148425008", + "label": "Montreal Cognitive Assessment version 7.1" + }, + { + "identifier": "snomed:1148703001", + "label": "Psychotic Depression Assessment Scale" + }, + { + "identifier": "snomed:1149100002", + "label": "Chronic Lymphocytic Leukemia International Prognostic Index" + }, + { + "identifier": "snomed:1149300008", + "label": "Subjective Global Nutritional Assessment for children" + }, + { + "identifier": "snomed:1149521000000105", + "label": "PedsQL (Pediatric Quality of Life) Inventory 4.0 Generic Core Scale Parent Report for Toddlers (ages 2-4)" + }, + { + "identifier": "snomed:1155951007", + "label": "Revised Geneva score for pulmonary embolism" + }, + { + "identifier": "snomed:1155953005", + "label": "Pulmonary Embolism Rule-out Criteria" + }, + { + "identifier": "snomed:1167531000000107", + "label": "PedsQL (Pediatric Quality of Life) Inventory 4.0 Generic Core Scale Young Child Report (ages 5-7)" + }, + { + "identifier": "snomed:1167551000000100", + "label": "PedsQL (Pediatric Quality of Life) Inventory 4.0 Generic Core Scale Parent Report for Young Children (ages 5-7)" + }, + { + "identifier": "snomed:1167661000000103", + "label": "PedsQL (Pediatric Quality of Life) Inventory 4.0 Generic Core Scale Parent Report for Children (ages 8-12)" + }, + { + "identifier": "snomed:1167671000000105", + "label": "PedsQL (Pediatric Quality of Life) Inventory 4.0 Generic Core Scale Child Report (ages 8-12)" + }, + { + "identifier": "snomed:1167851000000102", + "label": "PedsQL (Pediatric Quality of Life) Inventory 4.0 Generic Core Scale Parent Report for Teens (ages 13-18)" + }, + { + "identifier": "snomed:1167861000000104", + "label": "PedsQL (Pediatric Quality of Life) Inventory 4.0 Generic Core Scale Teen Report (ages 13-18)" + }, + { + "identifier": "snomed:1219141000000102", + "label": "Comprehensive Geriatric Assessment toolkit" + }, + { + "identifier": "snomed:1239191000000102", + "label": "4AT - 4 A's Test" + }, + { + "identifier": "snomed:1300671000000104", + "label": "COVID-19 severity scale" + }, + { + "identifier": "snomed:1321901000000100", + "label": "1-minute sit-to-stand test" + }, + { + "identifier": "snomed:1321951000000104", + "label": "40-step test" + }, + { + "identifier": "snomed:1323891000000100", + "label": "EDQLS (Eating Disorders Quality of Life Scale)" + }, + { + "identifier": "snomed:1324911000000100", + "label": "ELIM - Early Language Identification Measure" + }, + { + "identifier": "snomed:1325051000000101", + "label": "Newcastle post-COVID syndrome Follow-up Screening Questionnaire" + }, + { + "identifier": "snomed:1325071000000105", + "label": "C19-YRS (COVID-19 Yorkshire Rehabilitation Screening) tool" + }, + { + "identifier": "snomed:1325091000000109", + "label": "PCFS (Post-COVID-19 Functional Status) Scale patient self-report" + }, + { + "identifier": "snomed:1325151000000100", + "label": "PCFS (Post-COVID-19 Functional Status) Scale structured interview" + }, + { + "identifier": "snomed:1325901000000103", + "label": "QCovid risk calculator" + }, + { + "identifier": "snomed:1325961000000104", + "label": "NHS Digital COVID-19 Clinical Risk Assessment Tool" + }, + { + "identifier": "snomed:1326451000000101", + "label": "Edinburgh Dysphagia Score" + }, + { + "identifier": "snomed:134438001", + "label": "Canadian Cardiovascular Society classification of angina" + }, + { + "identifier": "snomed:135831005", + "label": "Cardiovascular Limitations and Symptoms Profile angina score" + }, + { + "identifier": "snomed:135832003", + "label": "Cardiovascular Limitations and Symptoms Profile ankle swelling score" + }, + { + "identifier": "snomed:135833008", + "label": "CLASP shortness of breath score" + }, + { + "identifier": "snomed:135877001", + "label": "Stroke risk" + }, + { + "identifier": "snomed:1362851000000109", + "label": "ORBIT-AF (Outcomes Registry for Better Informed Treatment of Atrial Fibrillation) bleeding risk score" + }, + { + "identifier": "snomed:1363051000000107", + "label": "Adult Safeguarding Decision Guide for individuals with severe pressure ulcers" + }, + { + "identifier": "snomed:1363231000000109", + "label": "National Paediatric Early Warning Score" + }, + { + "identifier": "snomed:1365631000000108", + "label": "CMHS-M - Correctional Mental Health Screen for Men" + }, + { + "identifier": "snomed:1365641000000104", + "label": "CMHS-W - Correctional Mental Health Screen for Women" + }, + { + "identifier": "snomed:1365901000000106", + "label": "Kidney Failure Risk Equation (4 Variable)" + }, + { + "identifier": "snomed:143981000000103", + "label": "Fuller's Self-Medication Risk Assessment Instrument" + }, + { + "identifier": "snomed:144271000000106", + "label": "Perinatal POEM - Patient rated Outcome and Experience Measure" + }, + { + "identifier": "snomed:145021000000101", + "label": "London Measure of Unplanned Pregnancy" + }, + { + "identifier": "snomed:153601000000102", + "label": "CRAFFT (Car, Relax, Alone, Forget, Family/Friends, Trouble) interview version 2.1" + }, + { + "identifier": "snomed:160723003", + "label": "Housing dependency scale" + }, + { + "identifier": "snomed:165270003", + "label": "Physical disability assessment score" + }, + { + "identifier": "snomed:165271004", + "label": "Physical disability admission score" + }, + { + "identifier": "snomed:165272006", + "label": "Physical disability inpatient score" + }, + { + "identifier": "snomed:165273001", + "label": "Physical disability discharge score" + }, + { + "identifier": "snomed:165274007", + "label": "Physical disability outpatient score" + }, + { + "identifier": "snomed:165275008", + "label": "Physical disability DV score" + }, + { + "identifier": "snomed:166841000000102", + "label": "United Kingdom Prospective Diabetes Study 10 year coronary heart disease risk score" + }, + { + "identifier": "snomed:198141000000105", + "label": "Roland-Morris disability questionnaire score" + }, + { + "identifier": "snomed:205111000000102", + "label": "New Zealand major joint replacement priority score" + }, + { + "identifier": "snomed:205371000000105", + "label": "Case management risk assessment score" + }, + { + "identifier": "snomed:248351000000102", + "label": "Christo inventory for substance-misuse services score" + }, + { + "identifier": "snomed:248641000000109", + "label": "BASDEC - Brief Assessment Schedule Depression Cards" + }, + { + "identifier": "snomed:263487004", + "label": "Borg scale" + }, + { + "identifier": "snomed:273249006", + "label": "Assessment scales" + }, + { + "identifier": "snomed:273263000", + "label": "AIDS Risk Behavior Knowledge Test" + }, + { + "identifier": "snomed:273251005", + "label": "Aachen aphasia test" + }, + { + "identifier": "snomed:273252003", + "label": "ABC behavioral checklist" + }, + { + "identifier": "snomed:273253008", + "label": "ABC test for movement" + }, + { + "identifier": "snomed:273254002", + "label": "Abbreviated injury scale" + }, + { + "identifier": "snomed:273255001", + "label": "Abbreviated Mental Test" + }, + { + "identifier": "snomed:273256000", + "label": "Abnormal involuntary movement scale" + }, + { + "identifier": "snomed:273257009", + "label": "Acute physiology and chronic health evaluation" + }, + { + "identifier": "snomed:273258004", + "label": "Acute physiology and chronic health evaluation II" + }, + { + "identifier": "snomed:273259007", + "label": "Acute physiology and chronic health evaluation III" + }, + { + "identifier": "snomed:273260002", + "label": "Addiction severity index" + }, + { + "identifier": "snomed:273261003", + "label": "Adult personality rating schedule" + }, + { + "identifier": "snomed:273262005", + "label": "Affect balance scale" + }, + { + "identifier": "snomed:273264006", + "label": "Alcohol dependence scale" + }, + { + "identifier": "snomed:273265007", + "label": "Alcohol use disorders identification test" + }, + { + "identifier": "snomed:273266008", + "label": "Alcohol use inventory" + }, + { + "identifier": "snomed:273267004", + "label": "Allen cognitive level screening tool" + }, + { + "identifier": "snomed:273268009", + "label": "Allen cognitive performance test" + }, + { + "identifier": "snomed:273269001", + "label": "Alzheimer's Disease Assessment Scale" + }, + { + "identifier": "snomed:273270000", + "label": "American Society of Anesthesiologists physical status classification" + }, + { + "identifier": "snomed:273271001", + "label": "Amsterdam-Nijmegen Everyday Language Test" + }, + { + "identifier": "snomed:273272008", + "label": "Anomalous sentence repetition test - Weeks" + }, + { + "identifier": "snomed:273273003", + "label": "Anomalous sentence test - Kopelman" + }, + { + "identifier": "snomed:273274009", + "label": "Anorexic attitudes questionnaire" + }, + { + "identifier": "snomed:273275005", + "label": "Anorexic behavior scales" + }, + { + "identifier": "snomed:273276006", + "label": "Aphasia language performance scales" + }, + { + "identifier": "snomed:273277002", + "label": "Aphasia screening test" + }, + { + "identifier": "snomed:273279004", + "label": "Apraxia battery for adults" + }, + { + "identifier": "snomed:273280001", + "label": "Arizona battery for communication disorders of dementia" + }, + { + "identifier": "snomed:273281002", + "label": "Arthritis impact measurement scale I" + }, + { + "identifier": "snomed:273282009", + "label": "Arthritis Impact Measurement Scales 2" + }, + { + "identifier": "snomed:273283004", + "label": "ASEPSIS score for wound infection" + }, + { + "identifier": "snomed:273284005", + "label": "Ashworth assessment scale" + }, + { + "identifier": "snomed:273285006", + "label": "Assessing reading difficulties" + }, + { + "identifier": "snomed:273286007", + "label": "Assessment and therapy program for dysfluent children" + }, + { + "identifier": "snomed:273287003", + "label": "Assessment of intelligibility" + }, + { + "identifier": "snomed:273288008", + "label": "Assessment of motor and process skills" + }, + { + "identifier": "snomed:273289000", + "label": "Assessment of occupational functioning" + }, + { + "identifier": "snomed:273290009", + "label": "Assessment protocol of pragmatic linguistic skills" + }, + { + "identifier": "snomed:273291008", + "label": "Aston index" + }, + { + "identifier": "snomed:273292001", + "label": "Attributional style questionnaire" + }, + { + "identifier": "snomed:273293006", + "label": "Auditory comprehension test for sentences" + }, + { + "identifier": "snomed:273294000", + "label": "Augmentative communication profile" + }, + { + "identifier": "snomed:273295004", + "label": "Autistic features checklist" + }, + { + "identifier": "snomed:273296003", + "label": "Autobiographical memory interview" + }, + { + "identifier": "snomed:273298002", + "label": "Bamford Kowal and Bench non-picture related" + }, + { + "identifier": "snomed:273299005", + "label": "Bamford Kowal and Bench picture related" + }, + { + "identifier": "snomed:273300002", + "label": "Bangor dyslexia test" + }, + { + "identifier": "snomed:273301003", + "label": "Bankson language test" + }, + { + "identifier": "snomed:273302005", + "label": "Barthel index" + }, + { + "identifier": "snomed:273303000", + "label": "Bay area functional assessment" + }, + { + "identifier": "snomed:273305007", + "label": "Bayley scale of infant development" + }, + { + "identifier": "snomed:273306008", + "label": "Beck depression inventory" + }, + { + "identifier": "snomed:273307004", + "label": "Beck anxiety standardized rating scale" + }, + { + "identifier": "snomed:273308009", + "label": "Bedside evaluation and screening test of aphasia" + }, + { + "identifier": "snomed:273309001", + "label": "Beery-Buktenica test of visual motor integration" + }, + { + "identifier": "snomed:273311005", + "label": "Behavior Assessment Battery" + }, + { + "identifier": "snomed:273310006", + "label": "Behavior and mood disturbance scale" + }, + { + "identifier": "snomed:273312003", + "label": "Behavior problem checklist" + }, + { + "identifier": "snomed:273313008", + "label": "Behavior rating scale" + }, + { + "identifier": "snomed:273314002", + "label": "Behavioral inattention test" + }, + { + "identifier": "snomed:273315001", + "label": "Behavioral observation schedule" + }, + { + "identifier": "snomed:273316000", + "label": "Behavioral screening questionnaire" + }, + { + "identifier": "snomed:273317009", + "label": "Bennett's test of manual dexterity" + }, + { + "identifier": "snomed:273319007", + "label": "Bexley-Maudsley automated psychological screening" + }, + { + "identifier": "snomed:273320001", + "label": "Binge eating scale" + }, + { + "identifier": "snomed:273321002", + "label": "Birmingham object recognition battery" + }, + { + "identifier": "snomed:273322009", + "label": "Blakely dyspraxia assessment" + }, + { + "identifier": "snomed:273323004", + "label": "Blessed dementia rating scale" + }, + { + "identifier": "snomed:273324005", + "label": "Blissymbols test" + }, + { + "identifier": "snomed:273325006", + "label": "Body shape questionnaire" + }, + { + "identifier": "snomed:273326007", + "label": "Boehm test of basic concepts" + }, + { + "identifier": "snomed:273327003", + "label": "Booker heterotopic ossification score" + }, + { + "identifier": "snomed:273328008", + "label": "Boston aphasia scale" + }, + { + "identifier": "snomed:273329000", + "label": "Boston diagnostic aphasia examination" + }, + { + "identifier": "snomed:273330005", + "label": "Boston naming test" + }, + { + "identifier": "snomed:273331009", + "label": "Bracken test of basic concept scale" + }, + { + "identifier": "snomed:273332002", + "label": "Brief activities of daily living" + }, + { + "identifier": "snomed:273333007", + "label": "Brief depression rating scale" + }, + { + "identifier": "snomed:273334001", + "label": "Bristol language assessment scale" + }, + { + "identifier": "snomed:273335000", + "label": "British ability scales" + }, + { + "identifier": "snomed:273336004", + "label": "British ability scales - revised" + }, + { + "identifier": "snomed:273337008", + "label": "British ability scales reading test" + }, + { + "identifier": "snomed:273338003", + "label": "British ability scales spelling test" + }, + { + "identifier": "snomed:273339006", + "label": "British isles lupus assessment group score" + }, + { + "identifier": "snomed:273341007", + "label": "Bryant and Bradley rhyming task" + }, + { + "identifier": "snomed:273342000", + "label": "Buffalo assessment profile - Wilson" + }, + { + "identifier": "snomed:273343005", + "label": "Bulimia test" + }, + { + "identifier": "snomed:273344004", + "label": "Bulimic investigation test - Edinburgh" + }, + { + "identifier": "snomed:273345003", + "label": "Bus story" + }, + { + "identifier": "snomed:273347006", + "label": "Cage questionnaire" + }, + { + "identifier": "snomed:273348001", + "label": "California personality inventory" + }, + { + "identifier": "snomed:273364009", + "label": "Crohn's Disease Activity Index" + }, + { + "identifier": "snomed:273349009", + "label": "Callier-Azusa scale" + }, + { + "identifier": "snomed:273350009", + "label": "Camberwell family interview" + }, + { + "identifier": "snomed:273351008", + "label": "Cambridge apraxia battery" + }, + { + "identifier": "snomed:273352001", + "label": "Cantril ladder assessment" + }, + { + "identifier": "snomed:273353006", + "label": "Carrow elicited language inventory" + }, + { + "identifier": "snomed:273354000", + "label": "Carrow screening test of auditory comprehension" + }, + { + "identifier": "snomed:273355004", + "label": "Chailey Heritage lying assessment" + }, + { + "identifier": "snomed:273356003", + "label": "Chailey Heritage seating assessment" + }, + { + "identifier": "snomed:273357007", + "label": "Checklist of communicative competence" + }, + { + "identifier": "snomed:273358002", + "label": "Checklist of conversational abilities" + }, + { + "identifier": "snomed:273359005", + "label": "Checklist of listening behaviors" + }, + { + "identifier": "snomed:273360000", + "label": "Chessington occupational therapy neurological assessment battery" + }, + { + "identifier": "snomed:273361001", + "label": "Child assessment schedule" + }, + { + "identifier": "snomed:273362008", + "label": "Child depression scale" + }, + { + "identifier": "snomed:273363003", + "label": "Children's coma scale" + }, + { + "identifier": "snomed:273365005", + "label": "Clifton assessment procedures for the elderly" + }, + { + "identifier": "snomed:273366006", + "label": "Clinical anxiety scale" + }, + { + "identifier": "snomed:273367002", + "label": "Clinical dementia rating scale" + }, + { + "identifier": "snomed:273368007", + "label": "Clinical eating disorder rating instrument" + }, + { + "identifier": "snomed:273376009", + "label": "Communication Assessment Profile" + }, + { + "identifier": "snomed:273369004", + "label": "Clinical evaluation of language function revised" + }, + { + "identifier": "snomed:273370003", + "label": "Clinical evaluation of language function revised - screening test" + }, + { + "identifier": "snomed:273371004", + "label": "Clinical evaluation of language function revised - preschool test" + }, + { + "identifier": "snomed:273372006", + "label": "Clinical observation of motor and postural skills" + }, + { + "identifier": "snomed:273373001", + "label": "Cocaine abuse assessment profile" + }, + { + "identifier": "snomed:273374007", + "label": "Cognitions questionnaire" + }, + { + "identifier": "snomed:273375008", + "label": "Cognitive failures questionnaire" + }, + { + "identifier": "snomed:273377000", + "label": "Communicative abilities in daily living" + }, + { + "identifier": "snomed:273378005", + "label": "Composite international diagnostic interview" + }, + { + "identifier": "snomed:273379002", + "label": "Comprehensive drinker profile" + }, + { + "identifier": "snomed:273380004", + "label": "Comprehensive injury scale" + }, + { + "identifier": "snomed:273381000", + "label": "Comprehensive occupational therapy evaluation scale" + }, + { + "identifier": "snomed:273382007", + "label": "Compulsive eating scale" + }, + { + "identifier": "snomed:273383002", + "label": "Constant and Murley shoulder assessment score" + }, + { + "identifier": "snomed:273384008", + "label": "Consumer satisfaction questionnaire" + }, + { + "identifier": "snomed:273385009", + "label": "Co-op function charts" + }, + { + "identifier": "snomed:273386005", + "label": "Cooper personalized fluency control therapy" + }, + { + "identifier": "snomed:273387001", + "label": "Coping behavior inventory" + }, + { + "identifier": "snomed:273388006", + "label": "Crichton vocabulary scale" + }, + { + "identifier": "snomed:273389003", + "label": "Daily activities questionnaire" + }, + { + "identifier": "snomed:273390007", + "label": "Dallas pain questionnaire" + }, + { + "identifier": "snomed:273391006", + "label": "Daniels and Diack reading tests" + }, + { + "identifier": "snomed:273392004", + "label": "Daniels and Diack graded word spelling test" + }, + { + "identifier": "snomed:273393009", + "label": "De Gangi-Berk sensory functioning in infants" + }, + { + "identifier": "snomed:273394003", + "label": "Delighted-terrible faces scale" + }, + { + "identifier": "snomed:273395002", + "label": "Denver development scale" + }, + { + "identifier": "snomed:273396001", + "label": "Denver developmental subscale - gross motor" + }, + { + "identifier": "snomed:273397005", + "label": "Denver developmental subscale - language" + }, + { + "identifier": "snomed:273398000", + "label": "Denver developmental subscale - personal/social" + }, + { + "identifier": "snomed:273399008", + "label": "Denver developmental subscale - fine motor/adaptive" + }, + { + "identifier": "snomed:273400001", + "label": "Denver development scale screening test" + }, + { + "identifier": "snomed:273401002", + "label": "Denver development scale screening test - schedule for growing skills" + }, + { + "identifier": "snomed:273402009", + "label": "Depression anxiety scale" + }, + { + "identifier": "snomed:273403004", + "label": "Depression self rating scale" + }, + { + "identifier": "snomed:273420000", + "label": "Disability assessment schedule" + }, + { + "identifier": "snomed:273408008", + "label": "Dermatology life quality index" + }, + { + "identifier": "snomed:273409000", + "label": "Derogatis sexual functioning inventory" + }, + { + "identifier": "snomed:273411009", + "label": "Diabetes clinic satisfaction questionnaire" + }, + { + "identifier": "snomed:273412002", + "label": "Diabetes treatment satisfaction questionnaire" + }, + { + "identifier": "snomed:273413007", + "label": "Diabetes wellbeing questionnaire" + }, + { + "identifier": "snomed:273414001", + "label": "Diagnostic interview for children and adolescents" + }, + { + "identifier": "snomed:273415000", + "label": "Diagnostic interview schedule" + }, + { + "identifier": "snomed:273416004", + "label": "Diagnostic speech discrimination test" + }, + { + "identifier": "snomed:273417008", + "label": "Diagnostic survey for eating disorders" + }, + { + "identifier": "snomed:273418003", + "label": "Dietary instrument for nutrition education questionnaire" + }, + { + "identifier": "snomed:273419006", + "label": "Digit sequence learning" + }, + { + "identifier": "snomed:273421001", + "label": "Disability rating scale" + }, + { + "identifier": "snomed:273422008", + "label": "Discourse abilities profile" + }, + { + "identifier": "snomed:273423003", + "label": "Dol scale" + }, + { + "identifier": "snomed:273424009", + "label": "Doyle articular index" + }, + { + "identifier": "snomed:273425005", + "label": "Drinking problem scale" + }, + { + "identifier": "snomed:273426006", + "label": "Drug abuse screening test" + }, + { + "identifier": "snomed:273427002", + "label": "Dubowitz score" + }, + { + "identifier": "snomed:273428007", + "label": "Duke UNC health profile" + }, + { + "identifier": "snomed:273429004", + "label": "Dundee cardiovascular risk score" + }, + { + "identifier": "snomed:273430009", + "label": "Durrell test of listening comprehension" + }, + { + "identifier": "snomed:273431008", + "label": "Eakin index" + }, + { + "identifier": "snomed:273432001", + "label": "Eating attitudes test" + }, + { + "identifier": "snomed:273433006", + "label": "Abbreviated eating attitudes test" + }, + { + "identifier": "snomed:273434000", + "label": "Eating behavior rating scale" + }, + { + "identifier": "snomed:273435004", + "label": "Eating disorders inventory" + }, + { + "identifier": "snomed:273436003", + "label": "Eating inventory" + }, + { + "identifier": "snomed:273437007", + "label": "ECOG scale for physical assessment" + }, + { + "identifier": "snomed:273438002", + "label": "Edinburgh articulation test" + }, + { + "identifier": "snomed:273439005", + "label": "Edinburgh functional communication profile" + }, + { + "identifier": "snomed:273440007", + "label": "Revised Edinburgh functional communication profile" + }, + { + "identifier": "snomed:273441006", + "label": "Edinburgh postnatal depression scale" + }, + { + "identifier": "snomed:273442004", + "label": "Edmans activities of daily living index" + }, + { + "identifier": "snomed:273443009", + "label": "Elia normogram" + }, + { + "identifier": "snomed:273446001", + "label": "European Organisation for Research and Treatment of Cancer - Quality of Life questionnaire" + }, + { + "identifier": "snomed:273444003", + "label": "English picture vocabulary test" + }, + { + "identifier": "snomed:273445002", + "label": "Enthesitis index" + }, + { + "identifier": "snomed:273447005", + "label": "EuroQOL" + }, + { + "identifier": "snomed:273448000", + "label": "Extended activities of daily living scale" + }, + { + "identifier": "snomed:273449008", + "label": "Eysenck personality inventory" + }, + { + "identifier": "snomed:273450008", + "label": "Facial recognition test" + }, + { + "identifier": "snomed:273451007", + "label": "Fagerstrom tolerance questionnaire" + }, + { + "identifier": "snomed:273452000", + "label": "Revised tolerance questionnaire" + }, + { + "identifier": "snomed:273453005", + "label": "Fagerstrom test for nicotine dependence" + }, + { + "identifier": "snomed:273454004", + "label": "Fear of AIDS scale" + }, + { + "identifier": "snomed:273455003", + "label": "Fear survey schedule" + }, + { + "identifier": "snomed:273456002", + "label": "Feeding assessment schedule" + }, + { + "identifier": "snomed:273457006", + "label": "Feelings of fatness questionnaire" + }, + { + "identifier": "snomed:273458001", + "label": "Finger tapping test" + }, + { + "identifier": "snomed:273459009", + "label": "FIRST screening test" + }, + { + "identifier": "snomed:273460004", + "label": "Frankel grading system for spinal cord injury" + }, + { + "identifier": "snomed:273461000", + "label": "Frenchay activities index" + }, + { + "identifier": "snomed:273462007", + "label": "Frenchay aphasia screening test" + }, + { + "identifier": "snomed:273463002", + "label": "Frenchay dysarthria assessment" + }, + { + "identifier": "snomed:273465009", + "label": "Fullerton language test for adolescents" + }, + { + "identifier": "snomed:273466005", + "label": "Functional assessment measure" + }, + { + "identifier": "snomed:273467001", + "label": "Functional communication assessment for physically handicapped children" + }, + { + "identifier": "snomed:273468006", + "label": "Functional communication profile" + }, + { + "identifier": "snomed:273469003", + "label": "Functional independence measure" + }, + { + "identifier": "snomed:273470002", + "label": "Functional limitation profile" + }, + { + "identifier": "snomed:273471003", + "label": "Functional meal preparation scale" + }, + { + "identifier": "snomed:273472005", + "label": "Functional status index" + }, + { + "identifier": "snomed:273473000", + "label": "Fundamental speech skills test" + }, + { + "identifier": "snomed:273474006", + "label": "Galveston orientation and amnesia test" + }, + { + "identifier": "snomed:273475007", + "label": "Gathercole - non-word repetition task" + }, + { + "identifier": "snomed:273477004", + "label": "General assessment of neurological impairment" + }, + { + "identifier": "snomed:273478009", + "label": "General clerical test" + }, + { + "identifier": "snomed:273479001", + "label": "General health questionnaire" + }, + { + "identifier": "snomed:273480003", + "label": "General wellbeing schedule" + }, + { + "identifier": "snomed:273481004", + "label": "Geriatric depression scale" + }, + { + "identifier": "snomed:273482006", + "label": "German test of wordfinding" + }, + { + "identifier": "snomed:273483001", + "label": "Glasgow abbreviated mental test score" + }, + { + "identifier": "snomed:273484007", + "label": "Glasgow outcome scale" + }, + { + "identifier": "snomed:273485008", + "label": "Goldman cardiac risk index" + }, + { + "identifier": "snomed:273486009", + "label": "Goldman-Fristoe test" + }, + { + "identifier": "snomed:273487000", + "label": "Golombrok-Rust inventory of sexual satisfaction" + }, + { + "identifier": "snomed:273488005", + "label": "Goodenough draw-a-man test" + }, + { + "identifier": "snomed:273489002", + "label": "Goodenough norms" + }, + { + "identifier": "snomed:273490006", + "label": "GRBAS scale" + }, + { + "identifier": "snomed:273492003", + "label": "Graded naming test" + }, + { + "identifier": "snomed:273493008", + "label": "Graham-Kendall memory for designs test" + }, + { + "identifier": "snomed:273494002", + "label": "Grammatical analysis of elicited language" + }, + { + "identifier": "snomed:273495001", + "label": "Grammatical contrasts test" + }, + { + "identifier": "snomed:273496000", + "label": "Gunzberg primary progress assessment chart of social development" + }, + { + "identifier": "snomed:273497009", + "label": "Gunzberg progress assessment chart of social development number 1" + }, + { + "identifier": "snomed:273498004", + "label": "Gunzberg progress assessment chart of social development number 2" + }, + { + "identifier": "snomed:273499007", + "label": "Hachinski ischemia score" + }, + { + "identifier": "snomed:273500003", + "label": "Hall and Baker rehabilitation evaluation" + }, + { + "identifier": "snomed:273501004", + "label": "Halstead-Reitan battery" + }, + { + "identifier": "snomed:273502006", + "label": "Hamb hip score" + }, + { + "identifier": "snomed:273503001", + "label": "Hamilton rating scale for depression" + }, + { + "identifier": "snomed:273504007", + "label": "Lorr's modified multidimensional scale for rating psychiatric patients" + }, + { + "identifier": "snomed:273505008", + "label": "Hampshire assessment for living with others" + }, + { + "identifier": "snomed:273508005", + "label": "Harvey and Bradshaw index" + }, + { + "identifier": "snomed:273509002", + "label": "Hauser ambulatory categories" + }, + { + "identifier": "snomed:273510007", + "label": "Health assessment questionnaire" + }, + { + "identifier": "snomed:273511006", + "label": "Modified health assessment questionnaire" + }, + { + "identifier": "snomed:273512004", + "label": "Healthcare assessment questionnaire - Sidney Benjamin" + }, + { + "identifier": "snomed:273513009", + "label": "Health of the Nation Outcome Scale (generic version)" + }, + { + "identifier": "snomed:273514003", + "label": "Health status index" + }, + { + "identifier": "snomed:273515002", + "label": "Hearing handicap inventory for the elderly" + }, + { + "identifier": "snomed:273516001", + "label": "Hearing handicap scale" + }, + { + "identifier": "snomed:273517005", + "label": "Hidden figures test" + }, + { + "identifier": "snomed:273518000", + "label": "Hoehn and Yahr grades" + }, + { + "identifier": "snomed:273507000", + "label": "Hanen early language program" + }, + { + "identifier": "snomed:273519008", + "label": "Holborn sentence reading test" + }, + { + "identifier": "snomed:273533008", + "label": "Injury Severity Score" + }, + { + "identifier": "snomed:273520002", + "label": "Hopelessness scale" + }, + { + "identifier": "snomed:273521003", + "label": "Hopkins symptom checklist" + }, + { + "identifier": "snomed:273522005", + "label": "Hornsby articulation test" + }, + { + "identifier": "snomed:273523000", + "label": "Hornsby test of language development" + }, + { + "identifier": "snomed:273524006", + "label": "Hospital anxiety and depression scale" + }, + { + "identifier": "snomed:273525007", + "label": "Hospital trauma index" + }, + { + "identifier": "snomed:273526008", + "label": "Human interaction assessment" + }, + { + "identifier": "snomed:273527004", + "label": "Illinois test of psycholinguistic abilities" + }, + { + "identifier": "snomed:273528009", + "label": "Illness-injury severity index" + }, + { + "identifier": "snomed:273529001", + "label": "Illness behavior questionnaire" + }, + { + "identifier": "snomed:273530006", + "label": "Impact of event scale" + }, + { + "identifier": "snomed:273531005", + "label": "Index of activities of daily living" + }, + { + "identifier": "snomed:273534002", + "label": "Instrumental activities of daily living" + }, + { + "identifier": "snomed:273535001", + "label": "Inter-reactive language analysis" + }, + { + "identifier": "snomed:273536000", + "label": "Interaction checklist for augmentative communication" + }, + { + "identifier": "snomed:273537009", + "label": "Interest checklist" + }, + { + "identifier": "snomed:273538004", + "label": "IOWA low back rating scale" + }, + { + "identifier": "snomed:273539007", + "label": "IOWA structured psychiatric interview" + }, + { + "identifier": "snomed:273540009", + "label": "Ischemia score" + }, + { + "identifier": "snomed:273542001", + "label": "Jarman index" + }, + { + "identifier": "snomed:273543006", + "label": "Jebsen hand function test" + }, + { + "identifier": "snomed:273544000", + "label": "Jones word order test" + }, + { + "identifier": "snomed:273546003", + "label": "Karnofsky performance status" + }, + { + "identifier": "snomed:273547007", + "label": "Katz activities of daily living" + }, + { + "identifier": "snomed:273548002", + "label": "Katz adjustment scale - relatives form" + }, + { + "identifier": "snomed:273549005", + "label": "Kendrick battery for detection of dementia in the elderly" + }, + { + "identifier": "snomed:273550005", + "label": "Kenny self-care evaluation form" + }, + { + "identifier": "snomed:273551009", + "label": "Kielhofner role checklist" + }, + { + "identifier": "snomed:273552002", + "label": "Kirwan Thompson articular index" + }, + { + "identifier": "snomed:273553007", + "label": "Klein-Bell ADL scale" + }, + { + "identifier": "snomed:273554001", + "label": "Kurtzke multiple sclerosis rating scale" + }, + { + "identifier": "snomed:273555000", + "label": "Lambeth communication scale" + }, + { + "identifier": "snomed:273556004", + "label": "Lambeth disability screening questionnaire" + }, + { + "identifier": "snomed:273557008", + "label": "Lamh assessment checklist" + }, + { + "identifier": "snomed:273558003", + "label": "Language assessment remediation and screening procedure" + }, + { + "identifier": "snomed:273559006", + "label": "Lansbury articular index" + }, + { + "identifier": "snomed:273560001", + "label": "Last six months of drinking questionnaire" + }, + { + "identifier": "snomed:273561002", + "label": "Learning development aids - handwriting assessment" + }, + { + "identifier": "snomed:273562009", + "label": "Leeds scales for the self-assessment of anxiety and depression" + }, + { + "identifier": "snomed:273563004", + "label": "Cormack and Lehane score" + }, + { + "identifier": "snomed:273564005", + "label": "Leiter international performance scale" + }, + { + "identifier": "snomed:273565006", + "label": "Lequesne index" + }, + { + "identifier": "snomed:273566007", + "label": "Lequesne index - hip" + }, + { + "identifier": "snomed:273567003", + "label": "Lequesne index - knee" + }, + { + "identifier": "snomed:273568008", + "label": "Letter cancelation test" + }, + { + "identifier": "snomed:273569000", + "label": "Life events and difficulties scale" + }, + { + "identifier": "snomed:273570004", + "label": "Life events inventory" + }, + { + "identifier": "snomed:273571000", + "label": "Life satisfaction index" + }, + { + "identifier": "snomed:273572007", + "label": "Life satisfaction index A" + }, + { + "identifier": "snomed:273573002", + "label": "Life satisfaction index B" + }, + { + "identifier": "snomed:273574008", + "label": "Life satisfaction index Z" + }, + { + "identifier": "snomed:273575009", + "label": "Likert scale" + }, + { + "identifier": "snomed:273576005", + "label": "Lincoln rehabilitation assessment" + }, + { + "identifier": "snomed:273577001", + "label": "Lindamood auditory conceptualization test" + }, + { + "identifier": "snomed:273578006", + "label": "Loewenstein Occupational Therapy Cognitive Assessment" + }, + { + "identifier": "snomed:273580000", + "label": "London hospital pain chart assessment" + }, + { + "identifier": "snomed:273581001", + "label": "Luria neuropsychological battery" + }, + { + "identifier": "snomed:273582008", + "label": "MacAndrew scale" + }, + { + "identifier": "snomed:273583003", + "label": "MacMillan reading test" + }, + { + "identifier": "snomed:273584009", + "label": "Make-a-picture story test" + }, + { + "identifier": "snomed:273585005", + "label": "Mallampati score" + }, + { + "identifier": "snomed:273586006", + "label": "Master questionnaire" + }, + { + "identifier": "snomed:273587002", + "label": "Revised Master questionnaire" + }, + { + "identifier": "snomed:273588007", + "label": "Matson assessment" + }, + { + "identifier": "snomed:273589004", + "label": "McConkey score" + }, + { + "identifier": "snomed:273590008", + "label": "McCormick miniature toy discrimination test" + }, + { + "identifier": "snomed:273591007", + "label": "McCormick miniature toy discrimination test - automated" + }, + { + "identifier": "snomed:273592000", + "label": "McCormick miniature toy discrimination test - manual" + }, + { + "identifier": "snomed:273593005", + "label": "McGill pain chart questionnaire" + }, + { + "identifier": "snomed:273594004", + "label": "McMaster health index questionnaire" + }, + { + "identifier": "snomed:273595003", + "label": "McTears assessment of conversation" + }, + { + "identifier": "snomed:273596002", + "label": "Medical outcomes study short form general health survey" + }, + { + "identifier": "snomed:273597006", + "label": "Medical outcomes study short form general health survey - 36" + }, + { + "identifier": "snomed:273598001", + "label": "Medical outcomes study short form general health survey - 20" + }, + { + "identifier": "snomed:273599009", + "label": "Medical Research Council motor power scale" + }, + { + "identifier": "snomed:273600007", + "label": "Medical Research Council questionnaire" + }, + { + "identifier": "snomed:273601006", + "label": "Mental status questionnaire" + }, + { + "identifier": "snomed:273602004", + "label": "Mental test score" + }, + { + "identifier": "snomed:273603009", + "label": "Mental test score - long version" + }, + { + "identifier": "snomed:273604003", + "label": "Merle d'Aubigne - Charnley hip score" + }, + { + "identifier": "snomed:273608000", + "label": "Michigan alcoholism screening test" + }, + { + "identifier": "snomed:273609008", + "label": "Brief Michigan alcoholism screening test" + }, + { + "identifier": "snomed:273610003", + "label": "Short Michigan alcoholism screening test" + }, + { + "identifier": "snomed:273611004", + "label": "Middlesex elderly assessment of mental state" + }, + { + "identifier": "snomed:273613001", + "label": "Midlands spelling test" + }, + { + "identifier": "snomed:273614007", + "label": "Mill Hill vocabulary scale" + }, + { + "identifier": "snomed:273615008", + "label": "Miller assessment for preschoolers" + }, + { + "identifier": "snomed:273616009", + "label": "Milwaukee evaluation of daily living skills" + }, + { + "identifier": "snomed:273617000", + "label": "Mini-mental state examination" + }, + { + "identifier": "snomed:273619002", + "label": "Modified mini-mental state examination" + }, + { + "identifier": "snomed:273621007", + "label": "Minnesota test for differential diagnosis of aphasia" + }, + { + "identifier": "snomed:273622000", + "label": "Shortened Minnesota test for differential diagnosis of aphasia" + }, + { + "identifier": "snomed:273623005", + "label": "Modified card sorting test" + }, + { + "identifier": "snomed:273624004", + "label": "Modified injury severity scale" + }, + { + "identifier": "snomed:273625003", + "label": "Modified word learning test" + }, + { + "identifier": "snomed:273626002", + "label": "Monterey fluency program" + }, + { + "identifier": "snomed:273627006", + "label": "Mood adjective checklist" + }, + { + "identifier": "snomed:273628001", + "label": "Morgan-Barry auditory discrimination and attention test" + }, + { + "identifier": "snomed:273629009", + "label": "Morningside rehabilitation status scale" + }, + { + "identifier": "snomed:273630004", + "label": "Mortality prediction model" + }, + { + "identifier": "snomed:273631000", + "label": "Mortality prediction model II" + }, + { + "identifier": "snomed:273632007", + "label": "Motives for smoking scale" + }, + { + "identifier": "snomed:273633002", + "label": "Motor assessment scale" + }, + { + "identifier": "snomed:273634008", + "label": "Motricity index" + }, + { + "identifier": "snomed:273635009", + "label": "Mount Wilga high level language screening assessment" + }, + { + "identifier": "snomed:273636005", + "label": "Movement of upper limb evaluation" + }, + { + "identifier": "snomed:273637001", + "label": "Multilevel informal language inventory" + }, + { + "identifier": "snomed:273638006", + "label": "Multilingual aphasia examination" + }, + { + "identifier": "snomed:273639003", + "label": "Munich alcoholism test" + }, + { + "identifier": "snomed:273640001", + "label": "National adult reading test" + }, + { + "identifier": "snomed:273641002", + "label": "Neale analysis of reading ability" + }, + { + "identifier": "snomed:273642009", + "label": "Nelson schedule of growing skills" + }, + { + "identifier": "snomed:273643004", + "label": "Neurobehavioral cognitive status examination" + }, + { + "identifier": "snomed:273644005", + "label": "Neuropsychological battery" + }, + { + "identifier": "snomed:273645006", + "label": "Newcastle articulation test" + }, + { + "identifier": "snomed:273646007", + "label": "Newcastle dyspraxia assessment" + }, + { + "identifier": "snomed:273647003", + "label": "Newcastle phonology assessment" + }, + { + "identifier": "snomed:273648008", + "label": "Nine hole peg test" + }, + { + "identifier": "snomed:273649000", + "label": "Norris functional scale" + }, + { + "identifier": "snomed:273650000", + "label": "Northwest syntax screening test" + }, + { + "identifier": "snomed:273651001", + "label": "Northwick Park index of independence in ADL" + }, + { + "identifier": "snomed:273652008", + "label": "Nottingham health profile" + }, + { + "identifier": "snomed:273662001", + "label": "OPCS behaviour disability scale" + }, + { + "identifier": "snomed:273654009", + "label": "Nuffield dyspraxia assessment" + }, + { + "identifier": "snomed:273656006", + "label": "Object naming test" + }, + { + "identifier": "snomed:273657002", + "label": "Occasions for smoking scale" + }, + { + "identifier": "snomed:273658007", + "label": "Occupational case analysis interview and rating scale" + }, + { + "identifier": "snomed:273659004", + "label": "Occupational performance history interview" + }, + { + "identifier": "snomed:273660009", + "label": "Odstock hand assessment" + }, + { + "identifier": "snomed:273661008", + "label": "OPCS disability scales" + }, + { + "identifier": "snomed:273663006", + "label": "OPCS communication disability scale" + }, + { + "identifier": "snomed:273664000", + "label": "OPCS consciousness disability scale" + }, + { + "identifier": "snomed:273665004", + "label": "OPCS continence disability scale" + }, + { + "identifier": "snomed:273666003", + "label": "OPCS dexterity disability scale" + }, + { + "identifier": "snomed:273667007", + "label": "OPCS disfigurement disability scale" + }, + { + "identifier": "snomed:273668002", + "label": "OPCS eating, drinking and digestion disability scale" + }, + { + "identifier": "snomed:273669005", + "label": "OPCS hearing disability scale" + }, + { + "identifier": "snomed:273670006", + "label": "OPCS intellectual functioning disability scale" + }, + { + "identifier": "snomed:273671005", + "label": "OPCS locomotion disability scale" + }, + { + "identifier": "snomed:273672003", + "label": "OPCS personal care disability scale" + }, + { + "identifier": "snomed:273673008", + "label": "OPCS reaching and stretching disability scale" + }, + { + "identifier": "snomed:273674002", + "label": "OPCS seeing disability scale" + }, + { + "identifier": "snomed:273675001", + "label": "Oswestry disability index" + }, + { + "identifier": "snomed:273676000", + "label": "Oswestry pain questionnaire" + }, + { + "identifier": "snomed:273677009", + "label": "Oxford grading scale for muscle strength" + }, + { + "identifier": "snomed:273680005", + "label": "Padua inventory" + }, + { + "identifier": "snomed:273681009", + "label": "Pediatric clinical test of sensory integration and balance" + }, + { + "identifier": "snomed:273682002", + "label": "Pediatric oral skills profile" + }, + { + "identifier": "snomed:273683007", + "label": "Pediatric risk of mortality" + }, + { + "identifier": "snomed:273684001", + "label": "Pediatric trauma score" + }, + { + "identifier": "snomed:273685000", + "label": "Pain diary" + }, + { + "identifier": "snomed:273686004", + "label": "Pantomime test" + }, + { + "identifier": "snomed:273687008", + "label": "Partners in augmentative communication training" + }, + { + "identifier": "snomed:273688003", + "label": "Patient activity checklist" + }, + { + "identifier": "snomed:273689006", + "label": "Patient satisfaction score" + }, + { + "identifier": "snomed:273690002", + "label": "16 Personality factor questionnaire" + }, + { + "identifier": "snomed:273691003", + "label": "PETAL speech assessment procedure" + }, + { + "identifier": "snomed:273692005", + "label": "Peabody picture vocabulary test" + }, + { + "identifier": "snomed:273693000", + "label": "Perceptions of stuttering inventory" + }, + { + "identifier": "snomed:273694006", + "label": "Performance test of activities of daily living" + }, + { + "identifier": "snomed:273695007", + "label": "Personality assessment schedule" + }, + { + "identifier": "snomed:273696008", + "label": "Philadelphia geriatric center morale scale" + }, + { + "identifier": "snomed:273697004", + "label": "Phonological assessment of child speech" + }, + { + "identifier": "snomed:273699001", + "label": "PIP developmental charts" + }, + { + "identifier": "snomed:273701001", + "label": "Picture pointing test" + }, + { + "identifier": "snomed:273702008", + "label": "Porch index of communicative ability" + }, + { + "identifier": "snomed:273703003", + "label": "Positive and negative syndrome scale" + }, + { + "identifier": "snomed:273704009", + "label": "Pragmatics profile" + }, + { + "identifier": "snomed:273705005", + "label": "Pragmatics profile of early communication skills" + }, + { + "identifier": "snomed:273706006", + "label": "Preschool behavior check list" + }, + { + "identifier": "snomed:273707002", + "label": "Pre-school Boehm" + }, + { + "identifier": "snomed:273709004", + "label": "Pre-speech assessment scale" + }, + { + "identifier": "snomed:273710009", + "label": "Pre-verbal communication schedule" + }, + { + "identifier": "snomed:273711008", + "label": "Preschool language scale" + }, + { + "identifier": "snomed:273712001", + "label": "Previous IQ assessment by pronunciation" + }, + { + "identifier": "snomed:273713006", + "label": "Probability of death score" + }, + { + "identifier": "snomed:273714000", + "label": "Problem oriented medical record" + }, + { + "identifier": "snomed:273715004", + "label": "Profile in semantics" + }, + { + "identifier": "snomed:273716003", + "label": "Profile of communicative appropriateness" + }, + { + "identifier": "snomed:273717007", + "label": "Profile of mood states" + }, + { + "identifier": "snomed:273718002", + "label": "Psycholinguistic assessments of language processing in aphasia" + }, + { + "identifier": "snomed:273719005", + "label": "Psychological adjustment to illness scale" + }, + { + "identifier": "snomed:273720004", + "label": "PULSES profile" + }, + { + "identifier": "snomed:273721000", + "label": "Purdue pegboard scale" + }, + { + "identifier": "snomed:273722007", + "label": "Pyramids and palm trees test" + }, + { + "identifier": "snomed:273723002", + "label": "Quadriplegia index of function" + }, + { + "identifier": "snomed:273724008", + "label": "Quality adjusted life years" + }, + { + "identifier": "snomed:273725009", + "label": "Quality of life scale" + }, + { + "identifier": "snomed:273726005", + "label": "Quality of wellbeing scale" + }, + { + "identifier": "snomed:273727001", + "label": "Rancho scale - levels of cognitive functioning" + }, + { + "identifier": "snomed:273728006", + "label": "Rand functional limitations battery" + }, + { + "identifier": "snomed:273729003", + "label": "Rankin scale" + }, + { + "identifier": "snomed:273730008", + "label": "Rappaport disability rating scale" + }, + { + "identifier": "snomed:273731007", + "label": "Rating communicative behavior in head injured adults" + }, + { + "identifier": "snomed:273732000", + "label": "Raven Colored Progressive Matrices" + }, + { + "identifier": "snomed:273733005", + "label": "Raven Standard Progressive Matrices" + }, + { + "identifier": "snomed:273735003", + "label": "Read word discrimination test" + }, + { + "identifier": "snomed:273736002", + "label": "Reading comprehension battery for aphasia" + }, + { + "identifier": "snomed:273737006", + "label": "Reasons for eating scale" + }, + { + "identifier": "snomed:273738001", + "label": "Reasons for smoking scale" + }, + { + "identifier": "snomed:273739009", + "label": "Receptive expressive emergent language scale" + }, + { + "identifier": "snomed:273740006", + "label": "Recognition memory test" + }, + { + "identifier": "snomed:273741005", + "label": "Relative Stress Scale" + }, + { + "identifier": "snomed:273742003", + "label": "Renal index" + }, + { + "identifier": "snomed:273743008", + "label": "Renfrew action picture test" + }, + { + "identifier": "snomed:273744002", + "label": "Renfrew articulation test" + }, + { + "identifier": "snomed:273745001", + "label": "Renfrew wordfinding" + }, + { + "identifier": "snomed:273746000", + "label": "Repertory grid" + }, + { + "identifier": "snomed:273747009", + "label": "Reporters tests" + }, + { + "identifier": "snomed:273748004", + "label": "Resistance to change grid" + }, + { + "identifier": "snomed:273749007", + "label": "Respiratory index" + }, + { + "identifier": "snomed:273750007", + "label": "Restrained eating inventory" + }, + { + "identifier": "snomed:273751006", + "label": "Revised Iowa scale for rating severity" + }, + { + "identifier": "snomed:273752004", + "label": "Reynell developmental language scales" + }, + { + "identifier": "snomed:273753009", + "label": "Reynell verbal comprehension scale B assessment" + }, + { + "identifier": "snomed:273754003", + "label": "Reynell expressive language assessment" + }, + { + "identifier": "snomed:273756001", + "label": "Reynell Zinkin language scale for the visually impaired" + }, + { + "identifier": "snomed:273757005", + "label": "Right hemisphere battery" + }, + { + "identifier": "snomed:273758000", + "label": "Ritchie articular index" + }, + { + "identifier": "snomed:273759008", + "label": "Rivermead ADL index" + }, + { + "identifier": "snomed:273761004", + "label": "Rivermead behavioral memory test" + }, + { + "identifier": "snomed:273762006", + "label": "Rivermead motor assessment" + }, + { + "identifier": "snomed:273763001", + "label": "Rivermead perceptual assessment battery" + }, + { + "identifier": "snomed:273764007", + "label": "Robertson dysarthria assessment" + }, + { + "identifier": "snomed:273765008", + "label": "Robertson dysarthria profile" + }, + { + "identifier": "snomed:273766009", + "label": "Roehampton ADL for amputees" + }, + { + "identifier": "snomed:273767000", + "label": "Rose Summers pragmatic profile" + }, + { + "identifier": "snomed:273768005", + "label": "Ross information processing assessment" + }, + { + "identifier": "snomed:273769002", + "label": "Rosser's classification of illness states" + }, + { + "identifier": "snomed:273770001", + "label": "Roth and Spekman list of communicative intentions" + }, + { + "identifier": "snomed:273771002", + "label": "Rotterdam symptom check list" + }, + { + "identifier": "snomed:273772009", + "label": "Routine task inventory" + }, + { + "identifier": "snomed:273774005", + "label": "Rutter Behaviour Questionnaire" + }, + { + "identifier": "snomed:273775006", + "label": "Rutter A scale" + }, + { + "identifier": "snomed:273776007", + "label": "Rutter B scale" + }, + { + "identifier": "snomed:273777003", + "label": "Rutter B2 scale" + }, + { + "identifier": "snomed:273778008", + "label": "S scale Andrews and Cutler" + }, + { + "identifier": "snomed:273779000", + "label": "Salford reading test" + }, + { + "identifier": "snomed:273780002", + "label": "Samaritan orientation test" + }, + { + "identifier": "snomed:273781003", + "label": "Sandwell bilingual comprehension test" + }, + { + "identifier": "snomed:273782005", + "label": "Santa Clara valley medical center functional assessment measure" + }, + { + "identifier": "snomed:273783000", + "label": "Savary Miller scale" + }, + { + "identifier": "snomed:273784006", + "label": "Scale of early communication skills for hearing impaired children" + }, + { + "identifier": "snomed:273785007", + "label": "Schwachmann score" + }, + { + "identifier": "snomed:273786008", + "label": "Schedules for clinical assessment in neuropsychiatry" + }, + { + "identifier": "snomed:273787004", + "label": "Schnijders Ooman test for deaf children" + }, + { + "identifier": "snomed:273788009", + "label": "Schofield equation" + }, + { + "identifier": "snomed:273789001", + "label": "Schonell graded word reading test" + }, + { + "identifier": "snomed:273790005", + "label": "Schonell graded word spelling test" + }, + { + "identifier": "snomed:273791009", + "label": "Scissor skills checklist" + }, + { + "identifier": "snomed:273792002", + "label": "Screening for developmental apraxia of speech" + }, + { + "identifier": "snomed:273793007", + "label": "Screening test for auditory processing disorders" + }, + { + "identifier": "snomed:273795000", + "label": "Sensory Integration and Praxis Test" + }, + { + "identifier": "snomed:273803007", + "label": "Short Orientation - Memory - Concentration Test" + }, + { + "identifier": "snomed:273797008", + "label": "Sentence comprehension test" + }, + { + "identifier": "snomed:273798003", + "label": "Serial sevens test" + }, + { + "identifier": "snomed:273799006", + "label": "Severity of alcohol dependence questionnaire" + }, + { + "identifier": "snomed:273800005", + "label": "Severity of opiate dependence questionnaire" + }, + { + "identifier": "snomed:273801009", + "label": "Shaper index" + }, + { + "identifier": "snomed:273802002", + "label": "Short alcohol dependence data" + }, + { + "identifier": "snomed:273804001", + "label": "Short orientation-memory-concentration test - alternative version" + }, + { + "identifier": "snomed:273805000", + "label": "Short-term memory test" + }, + { + "identifier": "snomed:273806004", + "label": "Shulman test of pragmatic skills" + }, + { + "identifier": "snomed:273807008", + "label": "Sickness impact profile" + }, + { + "identifier": "snomed:273808003", + "label": "Silent reading test" + }, + { + "identifier": "snomed:273809006", + "label": "Silvers cerebral function test" + }, + { + "identifier": "snomed:273812009", + "label": "Simplified acute physiology scale II" + }, + { + "identifier": "snomed:273813004", + "label": "Situational confidence questionnaire" + }, + { + "identifier": "snomed:273814005", + "label": "Situations for eating scale" + }, + { + "identifier": "snomed:273815006", + "label": "Smith cognitive questionnaire" + }, + { + "identifier": "snomed:273816007", + "label": "Social adjustment scale" + }, + { + "identifier": "snomed:273817003", + "label": "Social adjustment scale II" + }, + { + "identifier": "snomed:273818008", + "label": "Social adjustment scale self - report" + }, + { + "identifier": "snomed:273819000", + "label": "Social behavior assessment scale" + }, + { + "identifier": "snomed:273820006", + "label": "Social support questionnaire" + }, + { + "identifier": "snomed:273821005", + "label": "Social use of language program" + }, + { + "identifier": "snomed:273822003", + "label": "South Tyneside assessment of phonology" + }, + { + "identifier": "snomed:273823008", + "label": "South Tyneside assessment of syntactic structures" + }, + { + "identifier": "snomed:273824002", + "label": "Southern California figure ground visual perception test" + }, + { + "identifier": "snomed:273825001", + "label": "Southern California postrotary nystagmus test" + }, + { + "identifier": "snomed:273826000", + "label": "Southern California sensory integration test" + }, + { + "identifier": "snomed:273827009", + "label": "Spare time activities questionnaire" + }, + { + "identifier": "snomed:273828004", + "label": "Special hospitals assessment of personality" + }, + { + "identifier": "snomed:273829007", + "label": "Speech intelligibility assessment procedure" + }, + { + "identifier": "snomed:273811002", + "label": "Simplified Acute Physiology Score" + }, + { + "identifier": "snomed:273830002", + "label": "Spielberger state-trait anxiety inventory" + }, + { + "identifier": "snomed:273831003", + "label": "Spitzer quality of life index" + }, + { + "identifier": "snomed:273833000", + "label": "St George's hospital respiratory questionnaire" + }, + { + "identifier": "snomed:273834006", + "label": "St Thomas's disability questionnaire" + }, + { + "identifier": "snomed:273835007", + "label": "Standardized assessment of personality" + }, + { + "identifier": "snomed:273836008", + "label": "Stanford Binet intelligence scale" + }, + { + "identifier": "snomed:273837004", + "label": "Steinbrocker functional classification" + }, + { + "identifier": "snomed:273838009", + "label": "Stimulus response inventory" + }, + { + "identifier": "snomed:273839001", + "label": "Stocker probe technique for diagnosis and treatment of stuttering in young children" + }, + { + "identifier": "snomed:273840004", + "label": "Stockton geriatric rating scale" + }, + { + "identifier": "snomed:273841000", + "label": "Story completion test" + }, + { + "identifier": "snomed:273842007", + "label": "Structured observation test of function" + }, + { + "identifier": "snomed:273843002", + "label": "Structured clinical interview for DSM-III-R" + }, + { + "identifier": "snomed:273844008", + "label": "Structured interview for DSM-III personality disorders" + }, + { + "identifier": "snomed:273845009", + "label": "Stuttering intervention program" + }, + { + "identifier": "snomed:273846005", + "label": "Stuttering prediction instrument" + }, + { + "identifier": "snomed:273847001", + "label": "Stuttering severity instrument" + }, + { + "identifier": "snomed:273848006", + "label": "Stycar hearing test" + }, + { + "identifier": "snomed:273849003", + "label": "Subjective global assessment" + }, + { + "identifier": "snomed:273850003", + "label": "Substance use disorder diagnostic schedule" + }, + { + "identifier": "snomed:273851004", + "label": "Sue Spence assessment" + }, + { + "identifier": "snomed:273852006", + "label": "Suicide risk scale" + }, + { + "identifier": "snomed:273853001", + "label": "Sunnybrook cord injury scale" + }, + { + "identifier": "snomed:273854007", + "label": "Supplementary language test" + }, + { + "identifier": "snomed:273856009", + "label": "Swollen joint count" + }, + { + "identifier": "snomed:273857000", + "label": "Symbol digit modalities test" + }, + { + "identifier": "snomed:273858005", + "label": "Symbolic play test" + }, + { + "identifier": "snomed:273859002", + "label": "Symptom checklist" + }, + { + "identifier": "snomed:273860007", + "label": "Synonym learning test" + }, + { + "identifier": "snomed:273861006", + "label": "Systematic fluency training for young children" + }, + { + "identifier": "snomed:273862004", + "label": "Systemic lupus activity measure" + }, + { + "identifier": "snomed:273863009", + "label": "Systemic lupus erythematosus disease activity index" + }, + { + "identifier": "snomed:273864003", + "label": "Tamb test" + }, + { + "identifier": "snomed:273865002", + "label": "Tender joint count" + }, + { + "identifier": "snomed:273867005", + "label": "Test for auditory perception of speech" + }, + { + "identifier": "snomed:273868000", + "label": "Test of auditory comprehension of language" + }, + { + "identifier": "snomed:273869008", + "label": "Test of auditory discrimination" + }, + { + "identifier": "snomed:273870009", + "label": "Test of language competence" + }, + { + "identifier": "snomed:273871008", + "label": "Test of language development 2" + }, + { + "identifier": "snomed:273872001", + "label": "Test of motor impairment - Stott-Moyes-Henderson" + }, + { + "identifier": "snomed:273873006", + "label": "Test of pragmatic skills" + }, + { + "identifier": "snomed:273874000", + "label": "Test of reception of grammar" + }, + { + "identifier": "snomed:273875004", + "label": "Test of syntactic abilities" + }, + { + "identifier": "snomed:273876003", + "label": "Test of word finding in discourse" + }, + { + "identifier": "snomed:273877007", + "label": "Test of word knowledge" + }, + { + "identifier": "snomed:273878002", + "label": "Therapeutic intervention scoring system" + }, + { + "identifier": "snomed:273879005", + "label": "Time line follow back" + }, + { + "identifier": "snomed:273880008", + "label": "Time trade off analysis" + }, + { + "identifier": "snomed:273881007", + "label": "Token test" + }, + { + "identifier": "snomed:273882000", + "label": "Trail making test" + }, + { + "identifier": "snomed:273883005", + "label": "Trauma index" + }, + { + "identifier": "snomed:273884004", + "label": "Trauma score" + }, + { + "identifier": "snomed:273885003", + "label": "Revised trauma score" + }, + { + "identifier": "snomed:273886002", + "label": "Trauma and injury severity score" + }, + { + "identifier": "snomed:273887006", + "label": "Triage index" + }, + { + "identifier": "snomed:273888001", + "label": "Valentine auditory memory test" + }, + { + "identifier": "snomed:273889009", + "label": "Valpar 17 pre-vocational readiness battery" + }, + { + "identifier": "snomed:273891001", + "label": "Vernon Cloze procedure reading test" + }, + { + "identifier": "snomed:273892008", + "label": "Vernon graded word reading test" + }, + { + "identifier": "snomed:273893003", + "label": "Vineland maturity scales adapted for the blind" + }, + { + "identifier": "snomed:273894009", + "label": "Vineland social maturity scale" + }, + { + "identifier": "snomed:273895005", + "label": "Vineland subquotient - general self-help" + }, + { + "identifier": "snomed:273896006", + "label": "Vineland subquotient - communication" + }, + { + "identifier": "snomed:273897002", + "label": "Vineland subquotient - locomotion" + }, + { + "identifier": "snomed:273898007", + "label": "Vineland subquotient - occupation" + }, + { + "identifier": "snomed:273899004", + "label": "Vineland subquotient - self-help in eating" + }, + { + "identifier": "snomed:273900009", + "label": "Vineland subquotient - socialization" + }, + { + "identifier": "snomed:273901008", + "label": "Vineland behavioral assessment" + }, + { + "identifier": "snomed:273902001", + "label": "Visick symptom grade" + }, + { + "identifier": "snomed:273903006", + "label": "Visual analog scale" + }, + { + "identifier": "snomed:273904000", + "label": "Visual analog pain scale" + }, + { + "identifier": "snomed:273905004", + "label": "Visual and perceptual assessment program" + }, + { + "identifier": "snomed:273906003", + "label": "Visual object and spatial perception test" + }, + { + "identifier": "snomed:273907007", + "label": "Vocal profile analysis" + }, + { + "identifier": "snomed:273908002", + "label": "Voice assessment sheet - Martin" + }, + { + "identifier": "snomed:273909005", + "label": "Voice evaluation form" + }, + { + "identifier": "snomed:273910000", + "label": "Voice skills assessment" + }, + { + "identifier": "snomed:273912008", + "label": "Waddell disability index" + }, + { + "identifier": "snomed:273913003", + "label": "Wakefield self-assessment depression inventory" + }, + { + "identifier": "snomed:273914009", + "label": "Ward behavior rating scale" + }, + { + "identifier": "snomed:273915005", + "label": "Warner dysphagia assessment" + }, + { + "identifier": "snomed:273916006", + "label": "Wechsler adult intelligence scale" + }, + { + "identifier": "snomed:273917002", + "label": "Wechsler adult intelligence scale - revised" + }, + { + "identifier": "snomed:273918007", + "label": "Wechsler intelligence scale for children" + }, + { + "identifier": "snomed:273919004", + "label": "Wechsler intelligence non-verbal performance assessment" + }, + { + "identifier": "snomed:273920005", + "label": "Wechsler intelligence verbal assessment" + }, + { + "identifier": "snomed:273921009", + "label": "Wechsler memory scale" + }, + { + "identifier": "snomed:273922002", + "label": "Wechsler pre-school and primary scale of intelligence" + }, + { + "identifier": "snomed:273923007", + "label": "Weigl - Goldstein - Scheerer color form sorting test" + }, + { + "identifier": "snomed:273924001", + "label": "Wepman digit span test" + }, + { + "identifier": "snomed:273925000", + "label": "Wepman test of auditory processing disorders" + }, + { + "identifier": "snomed:273926004", + "label": "Wessex revised portage language checklist" + }, + { + "identifier": "snomed:273927008", + "label": "Western aphasia battery" + }, + { + "identifier": "snomed:273928003", + "label": "Westmead Post-Traumatic Amnesia Scale" + }, + { + "identifier": "snomed:273929006", + "label": "WHO depression scale" + }, + { + "identifier": "snomed:273930001", + "label": "World Health Organization (WHO) handicap scale" + }, + { + "identifier": "snomed:273931002", + "label": "World Health Organization (WHO) classification of impairments, disabilities and handicap scale" + }, + { + "identifier": "snomed:273932009", + "label": "World Health Organization (WHO) economic self-sufficiency handicap scale" + }, + { + "identifier": "snomed:273933004", + "label": "World Health Organization (WHO) mobility handicap scale" + }, + { + "identifier": "snomed:273934005", + "label": "World Health Organization (WHO) occupation handicap scale" + }, + { + "identifier": "snomed:273935006", + "label": "World Health Organization (WHO) orientation handicap scale" + }, + { + "identifier": "snomed:273936007", + "label": "WHO physical independence handicap scale" + }, + { + "identifier": "snomed:273937003", + "label": "World Health Organization (WHO) social integration handicap scale" + }, + { + "identifier": "snomed:273938008", + "label": "Winslow feeding checklist" + }, + { + "identifier": "snomed:273939000", + "label": "Wisconsin card sorting test" + }, + { + "identifier": "snomed:273940003", + "label": "Zung self-rating depression scale" + }, + { + "identifier": "snomed:273941004", + "label": "Zung's anxiety status inventory" + }, + { + "identifier": "snomed:273942006", + "label": "Zung's self-rating anxiety scale" + }, + { + "identifier": "snomed:278699003", + "label": "Parsonnet score" + }, + { + "identifier": "snomed:278897004", + "label": "Waterlow Scale" + }, + { + "identifier": "snomed:278898009", + "label": "Norton Scale" + }, + { + "identifier": "snomed:278896008", + "label": "Short form McGill pain questionnaire" + }, + { + "identifier": "snomed:278921000000107", + "label": "Peter and the cat narrative assessment" + }, + { + "identifier": "snomed:278931000000109", + "label": "Phonological awareness profile" + }, + { + "identifier": "snomed:278941000000100", + "label": "Revised SCAN-C test for auditory processing disorders in children" + }, + { + "identifier": "snomed:278951000000102", + "label": "Revised test for auditory comprehension of language" + }, + { + "identifier": "snomed:278961000000104", + "label": "Test of auditory reasoning and processing skills" + }, + { + "identifier": "snomed:278971000000106", + "label": "Test of minimal articulation competence" + }, + { + "identifier": "snomed:278981000000108", + "label": "Metaphon screening assessment" + }, + { + "identifier": "snomed:278991000000105", + "label": "Hundred pictures naming test" + }, + { + "identifier": "snomed:279041000000108", + "label": "Reynell developmental language scales III" + }, + { + "identifier": "snomed:279061000000109", + "label": "Strong narrative assessment procedure" + }, + { + "identifier": "snomed:279071000000102", + "label": "Wiig criterion referenced inventory of language" + }, + { + "identifier": "snomed:279081000000100", + "label": "Test of pretend play" + }, + { + "identifier": "snomed:279091000000103", + "label": "Developmental, dimensional and diagnostic interview" + }, + { + "identifier": "snomed:279101002", + "label": "Verbal rating scale" + }, + { + "identifier": "snomed:279111000000108", + "label": "Play observation kit" + }, + { + "identifier": "snomed:279201000000102", + "label": "Assessment of comprehension and expression 6-11" + }, + { + "identifier": "snomed:279211000000100", + "label": "Children's communication checklist (second edition)" + }, + { + "identifier": "snomed:279221000000106", + "label": "Test for reception of grammar (second edition)" + }, + { + "identifier": "snomed:281113000", + "label": "Health of the Nation Outcome Scale - summated (generic version)" + }, + { + "identifier": "snomed:281114006", + "label": "Health of the Nation Outcome Scale subscale (generic version)" + }, + { + "identifier": "snomed:281115007", + "label": "Health of the Nation Outcome Scale item 1 - aggressive/disruptive behavior" + }, + { + "identifier": "snomed:281116008", + "label": "Health of the Nation Outcome Scale item 2 - non-accidental self injury" + }, + { + "identifier": "snomed:281117004", + "label": "Health of the Nation Outcome Scale item 3 - alcohol/drug problem" + }, + { + "identifier": "snomed:281118009", + "label": "Health of the Nation Outcome Scale item 4 - cognitive problems" + }, + { + "identifier": "snomed:281119001", + "label": "Health of the Nation Outcome Scale item 5 - physical illness/disability" + }, + { + "identifier": "snomed:281120007", + "label": "Health of the Nation Outcome Scale item 6 - hallucinations/delusions" + }, + { + "identifier": "snomed:281121006", + "label": "Health of the Nation Outcome Scale item 7 - depressed mood" + }, + { + "identifier": "snomed:281122004", + "label": "Health of the Nation Outcome Scale item 8 - other mental/behavioral problems" + }, + { + "identifier": "snomed:281123009", + "label": "Health of the Nation Outcome Scale item 9 - relationship problems" + }, + { + "identifier": "snomed:281124003", + "label": "Health of the Nation Outcome Scale item 10 - activities of daily living" + }, + { + "identifier": "snomed:281125002", + "label": "Health of the Nation Outcome scale item 11 - living conditions" + }, + { + "identifier": "snomed:281126001", + "label": "Health of the Nation Outcomes scale item 12 - occupation/activities" + }, + { + "identifier": "snomed:281400004", + "label": "Ramsay sedation scale" + }, + { + "identifier": "snomed:281692008", + "label": "Griffiths mental developmental scale" + }, + { + "identifier": "snomed:281693003", + "label": "Gessell developmental scale" + }, + { + "identifier": "snomed:281844006", + "label": "Health of the Nation Outcome subscale A" + }, + { + "identifier": "snomed:281845007", + "label": "Health of the Nation Outcome subscale B" + }, + { + "identifier": "snomed:281846008", + "label": "Health of the Nation Outcome subscale C" + }, + { + "identifier": "snomed:281848009", + "label": "Health of the Nation Outcome subscale D" + }, + { + "identifier": "snomed:281849001", + "label": "Health of the Nation Outcome Scale item (generic version)" + }, + { + "identifier": "snomed:282181000000100", + "label": "Test of auditory perceptual skills" + }, + { + "identifier": "snomed:282191000000103", + "label": "Revised test of auditory perceptual skills" + }, + { + "identifier": "snomed:282466006", + "label": "Suicide intent score scale" + }, + { + "identifier": "snomed:282467002", + "label": "Suicide intent score scale - summated" + }, + { + "identifier": "snomed:282468007", + "label": "Suicide intent score subscale" + }, + { + "identifier": "snomed:282469004", + "label": "Suicide intent score subscale - attempt circumstances" + }, + { + "identifier": "snomed:282470003", + "label": "Suicide intent score subscale - self report" + }, + { + "identifier": "snomed:282471004", + "label": "Suicide intent score subscale - risk" + }, + { + "identifier": "snomed:284061009", + "label": "Global assessment of functioning - 1993 DSMIV adaptation" + }, + { + "identifier": "snomed:284064001", + "label": "Brief psychiatric rating scale - 1962" + }, + { + "identifier": "snomed:284464005", + "label": "Health of the Nation Outcome Scales" + }, + { + "identifier": "snomed:285713000", + "label": "Guide to early movement skills checklist" + }, + { + "identifier": "snomed:285714006", + "label": "Bereweeke skill teaching system checklist" + }, + { + "identifier": "snomed:293101000000102", + "label": "Oxford knee score" + }, + { + "identifier": "snomed:293401000000105", + "label": "Maelor pressure ulcer risk assessment score" + }, + { + "identifier": "snomed:299151000000103", + "label": "National Audit of Cardiac Rehabilitation questionnaire" + }, + { + "identifier": "snomed:300991009", + "label": "Webster Scale" + }, + { + "identifier": "snomed:302029005", + "label": "Ferriman and Galway score" + }, + { + "identifier": "snomed:302331000000106", + "label": "Royal College of Physicians asthma assessment" + }, + { + "identifier": "snomed:303471000000106", + "label": "FAST - Fast Alcohol Screening Test" + }, + { + "identifier": "snomed:303807002", + "label": "Rule of nines" + }, + { + "identifier": "snomed:304705008", + "label": "AAMR adaptive behavior scale" + }, + { + "identifier": "snomed:304706009", + "label": "Acceptance of illness scale" + }, + { + "identifier": "snomed:304707000", + "label": "Anomalous sentences repetition test" + }, + { + "identifier": "snomed:304708005", + "label": "Arthritis impact measurement scale" + }, + { + "identifier": "snomed:304709002", + "label": "Attitudes towards doctors and medicine scale" + }, + { + "identifier": "snomed:304710007", + "label": "Beck hopelessness scale" + }, + { + "identifier": "snomed:304711006", + "label": "Beck anxiety inventory" + }, + { + "identifier": "snomed:304712004", + "label": "Beck scale for suicide ideation" + }, + { + "identifier": "snomed:304713009", + "label": "Beliefs about pain control questionnaire" + }, + { + "identifier": "snomed:304714003", + "label": "Bellak children's apperception test" + }, + { + "identifier": "snomed:304715002", + "label": "Bender visual motor gestalt test" + }, + { + "identifier": "snomed:304716001", + "label": "Bruininks-Oseretsky test of motor proficiency" + }, + { + "identifier": "snomed:304717005", + "label": "Cancer attitude inventory" + }, + { + "identifier": "snomed:304718000", + "label": "Child depression scale, second research edition" + }, + { + "identifier": "snomed:304719008", + "label": "Children's health locus of control scale" + }, + { + "identifier": "snomed:304720002", + "label": "Courtauld emotional control scale" + }, + { + "identifier": "snomed:304721003", + "label": "Crown-crisp experiential index" + }, + { + "identifier": "snomed:304722005", + "label": "Culture-free self-esteem inventory" + }, + { + "identifier": "snomed:304723000", + "label": "Delusions-symptoms-states inventory" + }, + { + "identifier": "snomed:304724006", + "label": "Eysenck personality questionnaire" + }, + { + "identifier": "snomed:304725007", + "label": "Family relations test" + }, + { + "identifier": "snomed:304726008", + "label": "Forced choice ratings of health-related attributes" + }, + { + "identifier": "snomed:304727004", + "label": "Framingham anger measure" + }, + { + "identifier": "snomed:304728009", + "label": "Framingham type A behavior pattern measure" + }, + { + "identifier": "snomed:304729001", + "label": "Fuld object memory evaluation" + }, + { + "identifier": "snomed:304730006", + "label": "Functional performance record" + }, + { + "identifier": "snomed:304731005", + "label": "General preventative health behaviors checklist" + }, + { + "identifier": "snomed:304732003", + "label": "Hassles scale" + }, + { + "identifier": "snomed:304733008", + "label": "Health knowledge measurement" + }, + { + "identifier": "snomed:304734002", + "label": "Health value scale" + }, + { + "identifier": "snomed:304735001", + "label": "Illinois test of psycholinguistic abilities, revised edition" + }, + { + "identifier": "snomed:304736000", + "label": "Inventory of drinking situations" + }, + { + "identifier": "snomed:304738004", + "label": "Kaufman assessment battery for children" + }, + { + "identifier": "snomed:304739007", + "label": "Life experiences checklist" + }, + { + "identifier": "snomed:304740009", + "label": "Life orientation test" + }, + { + "identifier": "snomed:304741008", + "label": "Luria-Nebraska neuropsychological battery, children's revision" + }, + { + "identifier": "snomed:304742001", + "label": "Luria-Nebraska neuropsychological battery, form 1" + }, + { + "identifier": "snomed:304743006", + "label": "Marlow-Crowne scale" + }, + { + "identifier": "snomed:304744000", + "label": "Medical interview satisfaction scale" + }, + { + "identifier": "snomed:304745004", + "label": "Mental adjustment to cancer scale" + }, + { + "identifier": "snomed:304746003", + "label": "Merril-Palmer preschool performance scale" + }, + { + "identifier": "snomed:304747007", + "label": "Motivation analysis test" + }, + { + "identifier": "snomed:304748002", + "label": "Multidimensional health locus of control scale" + }, + { + "identifier": "snomed:304749005", + "label": "Object relations technique" + }, + { + "identifier": "snomed:304750005", + "label": "Pain coping strategies questionnaire" + }, + { + "identifier": "snomed:304751009", + "label": "Pennebaker inventory of linguid languidness" + }, + { + "identifier": "snomed:304752002", + "label": "Perceived control of insulin-dependent diabetes" + }, + { + "identifier": "snomed:304753007", + "label": "Perceived stress scale" + }, + { + "identifier": "snomed:304754001", + "label": "Personality deviance scale" + }, + { + "identifier": "snomed:304755000", + "label": "Positive and negative affect schedule" + }, + { + "identifier": "snomed:304756004", + "label": "Prejudicial evaluation and social interaction scale" + }, + { + "identifier": "snomed:304757008", + "label": "Profile of mood states, bipolar" + }, + { + "identifier": "snomed:304758003", + "label": "Quick neurological screening test" + }, + { + "identifier": "snomed:304759006", + "label": "Raven's progressive matrices and vocabulary scales" + }, + { + "identifier": "snomed:304760001", + "label": "Recovery locus of control scale" + }, + { + "identifier": "snomed:304761002", + "label": "Reported health behaviors checklist" + }, + { + "identifier": "snomed:304762009", + "label": "Revised token test" + }, + { + "identifier": "snomed:304767003", + "label": "Rust Inventory of Schizotypal Cognitions" + }, + { + "identifier": "snomed:304763004", + "label": "Reynell developmental language scales, second revision" + }, + { + "identifier": "snomed:304764005", + "label": "Reynell Zinkin scale for young visually handicapped children" + }, + { + "identifier": "snomed:304765006", + "label": "Rogers personal adjustment inventory, revised" + }, + { + "identifier": "snomed:304766007", + "label": "Rosenberg self-esteem scale" + }, + { + "identifier": "snomed:304768008", + "label": "Satisfaction with life scale" + }, + { + "identifier": "snomed:304769000", + "label": "Screening test for the Luria-Nebraska neuropsychological battery" + }, + { + "identifier": "snomed:304770004", + "label": "Short form social support questionnaire" + }, + { + "identifier": "snomed:304771000", + "label": "Significant others scale" + }, + { + "identifier": "snomed:304772007", + "label": "Snijders-Oomen non-verbal intelligence scale, revised" + }, + { + "identifier": "snomed:304773002", + "label": "Stanford Binet intelligence scale, fourth edition" + }, + { + "identifier": "snomed:304774008", + "label": "Stanford Binet form L/M" + }, + { + "identifier": "snomed:304775009", + "label": "State-trait anger expression inventory" + }, + { + "identifier": "snomed:304776005", + "label": "Stroop neuropsychological screening test" + }, + { + "identifier": "snomed:304777001", + "label": "Symbolic play test, second edition" + }, + { + "identifier": "snomed:304778006", + "label": "Token test for children" + }, + { + "identifier": "snomed:304779003", + "label": "Uplifts scale" + }, + { + "identifier": "snomed:304780000", + "label": "Varni-Thompson pediatric pain questionnaire" + }, + { + "identifier": "snomed:304781001", + "label": "Vineland adaptive behavior scales" + }, + { + "identifier": "snomed:304915008", + "label": "Duke's coronary artery disease score" + }, + { + "identifier": "snomed:307791002", + "label": "Strange situation test" + }, + { + "identifier": "snomed:307792009", + "label": "Rey figure test" + }, + { + "identifier": "snomed:307793004", + "label": "Test of everyday attention" + }, + { + "identifier": "snomed:307794005", + "label": "Test of everyday attention - adult" + }, + { + "identifier": "snomed:307795006", + "label": "Test of everyday attention - child" + }, + { + "identifier": "snomed:307801002", + "label": "Rivermead behavioral memory test - adult version" + }, + { + "identifier": "snomed:307802009", + "label": "Rivermead behavioral memory test - child version" + }, + { + "identifier": "snomed:307803004", + "label": "Wechsler objective numerical dimensions test" + }, + { + "identifier": "snomed:307804005", + "label": "Wechsler objective language dimensions test" + }, + { + "identifier": "snomed:307805006", + "label": "Health of the Nation Outcome Scale for children" + }, + { + "identifier": "snomed:307806007", + "label": "Health of the Nation Outcome Scale for adolescents" + }, + { + "identifier": "snomed:307807003", + "label": "Maudsley addiction profile" + }, + { + "identifier": "snomed:309593006", + "label": "Education score - diabetes" + }, + { + "identifier": "snomed:311404002", + "label": "Attention process training questionnaire" + }, + { + "identifier": "snomed:311405001", + "label": "Rating scale of attentional behavior" + }, + { + "identifier": "snomed:311406000", + "label": "Everyday memory questionnaire" + }, + { + "identifier": "snomed:311457001", + "label": "Behavior assessment of the dysexecutive syndrome" + }, + { + "identifier": "snomed:311458006", + "label": "Doors and people assessment" + }, + { + "identifier": "snomed:311471009", + "label": "Extended 2 & 7 test" + }, + { + "identifier": "snomed:311472002", + "label": "Alphabet number alteration test" + }, + { + "identifier": "snomed:311473007", + "label": "Vigil/W test" + }, + { + "identifier": "snomed:311474001", + "label": "Attentional capacity test" + }, + { + "identifier": "snomed:311475000", + "label": "Consonant trigrams test" + }, + { + "identifier": "snomed:311477008", + "label": "Buschke selective reminding test" + }, + { + "identifier": "snomed:311478003", + "label": "California verbal learning test" + }, + { + "identifier": "snomed:311480009", + "label": "Williams memory assessment scales" + }, + { + "identifier": "snomed:311481008", + "label": "Wechsler memory scale revised" + }, + { + "identifier": "snomed:311483006", + "label": "Association for neuropsychological research and development prospective memory test" + }, + { + "identifier": "snomed:311484000", + "label": "Paced auditory serial addition test" + }, + { + "identifier": "snomed:311485004", + "label": "Category test" + }, + { + "identifier": "snomed:311486003", + "label": "Profile of executive control system" + }, + { + "identifier": "snomed:311512008", + "label": "Brixton test" + }, + { + "identifier": "snomed:311514009", + "label": "MicroCog Assessment of Cognitive Function" + }, + { + "identifier": "snomed:311513003", + "label": "Hayling test" + }, + { + "identifier": "snomed:311515005", + "label": "Computerized Assessment of Response Bias" + }, + { + "identifier": "snomed:311516006", + "label": "Symptom validity test" + }, + { + "identifier": "snomed:311521009", + "label": "Rey complex figure test" + }, + { + "identifier": "snomed:311777009", + "label": "Military skills assessment" + }, + { + "identifier": "snomed:311807004", + "label": "Measurement of cognitive linguistic ability" + }, + { + "identifier": "snomed:311851008", + "label": "Attention process training test" + }, + { + "identifier": "snomed:311854000", + "label": "Life science associates assessment" + }, + { + "identifier": "snomed:311855004", + "label": "Speeded reading of word lists" + }, + { + "identifier": "snomed:311856003", + "label": "REACT - reaction tester" + }, + { + "identifier": "snomed:311858002", + "label": "SEARCH - searching for patterns" + }, + { + "identifier": "snomed:311860000", + "label": "Search a word" + }, + { + "identifier": "snomed:311861001", + "label": "DETECT - error detection" + }, + { + "identifier": "snomed:311863003", + "label": "BISECT - line bisection" + }, + { + "identifier": "snomed:311865005", + "label": "JUMP - eye movement" + }, + { + "identifier": "snomed:311866006", + "label": "MATCH - shape matching" + }, + { + "identifier": "snomed:311868007", + "label": "Search for the odd shape" + }, + { + "identifier": "snomed:311872006", + "label": "Wisconsin card sorting test (revised)" + }, + { + "identifier": "snomed:312311000000100", + "label": "Child 7 - 9 month hearing screen questionnaire" + }, + { + "identifier": "snomed:312971000000109", + "label": "Clinical Outcomes in Routine Evaluation Outcome Measure" + }, + { + "identifier": "snomed:313221000000108", + "label": "Generalised anxiety disorder 7 item score" + }, + { + "identifier": "snomed:315037004", + "label": "Sheffield risk score" + }, + { + "identifier": "snomed:315038009", + "label": "Framingham coronary heart disease 5 year risk score" + }, + { + "identifier": "snomed:315039001", + "label": "Framingham coronary heart disease 10 year risk score" + }, + { + "identifier": "snomed:315290008", + "label": "Coronary heart disease risk" + }, + { + "identifier": "snomed:315609007", + "label": "Pack years" + }, + { + "identifier": "snomed:315628000", + "label": "CLASP score" + }, + { + "identifier": "snomed:3191000175106", + "label": "Child-Pugh score" + }, + { + "identifier": "snomed:324691000000104", + "label": "Clinical Outcomes in Routine Evaluation - 10" + }, + { + "identifier": "snomed:325121000000105", + "label": "Framingham type B behaviour pattern measure" + }, + { + "identifier": "snomed:326781000000101", + "label": "Insomnia severity index" + }, + { + "identifier": "snomed:3311000175102", + "label": "Battelle Developmental Inventory Screening Tool" + }, + { + "identifier": "snomed:3321000175106", + "label": "Brigance Screens-II" + }, + { + "identifier": "snomed:3331000175109", + "label": "Child Development Inventory" + }, + { + "identifier": "snomed:3341000175103", + "label": "Infant Development Inventory" + }, + { + "identifier": "snomed:3351000175101", + "label": "Parent's Evaluation of Developmental Status" + }, + { + "identifier": "snomed:335781000000108", + "label": "Single alcohol screening questionnaire" + }, + { + "identifier": "snomed:335811000000106", + "label": "Alcohol use disorder identification test consumption questionnaire" + }, + { + "identifier": "snomed:335841000000107", + "label": "Alcohol use disorder identification test Piccinelli consumption questionnaire" + }, + { + "identifier": "snomed:3361000175104", + "label": "PEDS-DM (Parent's Evaluation of Developmental Status - Developmental Milestones)" + }, + { + "identifier": "snomed:3371000175107", + "label": "Kent Inventory of Developmental Skills" + }, + { + "identifier": "snomed:3381000175105", + "label": "The Ounce Scale" + }, + { + "identifier": "snomed:341431000000102", + "label": "Assessing cardiovascular risk using Scottish Intercollegiate Guidelines Network score" + }, + { + "identifier": "snomed:341461000000107", + "label": "Improving access to psychological therapies programme inclusion and employment questionnaire" + }, + { + "identifier": "snomed:341891000000103", + "label": "Improving access to psychological therapies programme work and social adjustment scale" + }, + { + "identifier": "snomed:341951000000101", + "label": "Improving access to psychological therapies programme patient experience questionnaire part 1" + }, + { + "identifier": "snomed:341981000000107", + "label": "Improving access to psychological therapies programme patient experience questionnaire part 2" + }, + { + "identifier": "snomed:342061000000106", + "label": "Unified Parkinsons disease rating scale score" + }, + { + "identifier": "snomed:342941000000109", + "label": "Easy-care assessment tool" + }, + { + "identifier": "snomed:343451000000108", + "label": "Occupational therapy interest checklist - United Kingdom" + }, + { + "identifier": "snomed:353641000000105", + "label": "QRISK cardiovascular disease 10 year risk score" + }, + { + "identifier": "snomed:373801008", + "label": "WHO performance status scale" + }, + { + "identifier": "snomed:374261000000109", + "label": "Improving access to psychological therapies programme phobia scale" + }, + { + "identifier": "snomed:380151000000104", + "label": "Modified Oxford grading scale for pelvic floor muscle strength" + }, + { + "identifier": "snomed:386554004", + "label": "Glasgow coma scale" + }, + { + "identifier": "snomed:395070003", + "label": "Elderly at risk rating scale" + }, + { + "identifier": "snomed:395551000000102", + "label": "Royal Manchester children's hospital test of fine and gross motor skills" + }, + { + "identifier": "snomed:396215004", + "label": "Developmental test of visual perception" + }, + { + "identifier": "snomed:396216003", + "label": "Motor free visual perception test" + }, + { + "identifier": "snomed:396241005", + "label": "Merrill Palmer scale" + }, + { + "identifier": "snomed:396244002", + "label": "Physical self maintenance scale" + }, + { + "identifier": "snomed:396293007", + "label": "Nottingham index" + }, + { + "identifier": "snomed:396295000", + "label": "Nottingham extended ADL index" + }, + { + "identifier": "snomed:396296004", + "label": "Nottingham ten-point ADL index" + }, + { + "identifier": "snomed:397759004", + "label": "Spectral edge frequency" + }, + { + "identifier": "snomed:398210001", + "label": "Bromage Scale" + }, + { + "identifier": "snomed:398204001", + "label": "Bispectral index" + }, + { + "identifier": "snomed:401161000000101", + "label": "United Kingdom consensus classification of pressure sores (1994)" + }, + { + "identifier": "snomed:404934007", + "label": "Tinetti assessment scale" + }, + { + "identifier": "snomed:404945005", + "label": "Elderly mobility scale" + }, + { + "identifier": "snomed:405645000", + "label": "Outcome severity scale" + }, + { + "identifier": "snomed:405646004", + "label": "Preventability scale" + }, + { + "identifier": "snomed:406529000", + "label": "Pneumonia severity index" + }, + { + "identifier": "snomed:407600003", + "label": "Pocock risk score" + }, + { + "identifier": "snomed:407612004", + "label": "Framingham coronary heart disease 10 year adjusted risk score" + }, + { + "identifier": "snomed:408554006", + "label": "Medley pressure ulcer risk score" + }, + { + "identifier": "snomed:408846002", + "label": "Stages of retinopathy of prematurity" + }, + { + "identifier": "snomed:413139004", + "label": "Braden assessment scale" + }, + { + "identifier": "snomed:414648004", + "label": "Malnutrition universal screening tool" + }, + { + "identifier": "snomed:414750000", + "label": "Mini mental state score" + }, + { + "identifier": "snomed:414879002", + "label": "Nottingham prognostic index" + }, + { + "identifier": "snomed:418118008", + "label": "Ranson's criteria score" + }, + { + "identifier": "snomed:420816009", + "label": "New York Heart Association Classification" + }, + { + "identifier": "snomed:423549006", + "label": "Chronic illness perception assessment scale" + }, + { + "identifier": "snomed:424772004", + "label": "Burns weaning assessment program" + }, + { + "identifier": "snomed:425401001", + "label": "Pain intensity rating scale" + }, + { + "identifier": "snomed:425759007", + "label": "Braden Q assessment scale" + }, + { + "identifier": "snomed:426938003", + "label": "Morse falls risk assessment" + }, + { + "identifier": "snomed:428203000", + "label": "Berg Balance Scale" + }, + { + "identifier": "snomed:428208009", + "label": "Bristol stool form scale" + }, + { + "identifier": "snomed:428433009", + "label": "International prostate symptom score" + }, + { + "identifier": "snomed:429021004", + "label": "Post anesthesia recovery scale" + }, + { + "identifier": "snomed:429389007", + "label": "Pierce suicide intent scale" + }, + { + "identifier": "snomed:429501006", + "label": "Alcohol withdrawal scale" + }, + { + "identifier": "snomed:429712009", + "label": "Bath Ankylosing Spondylitis Disease Activity Index" + }, + { + "identifier": "snomed:438367009", + "label": "CHADS2 score" + }, + { + "identifier": "snomed:438501007", + "label": "Joint protection knowledge assessment" + }, + { + "identifier": "snomed:438502000", + "label": "Occupational therapy role checklist" + }, + { + "identifier": "snomed:438621004", + "label": "Elderly Assessment System" + }, + { + "identifier": "snomed:438622006", + "label": "Perceived efficacy and goal setting system" + }, + { + "identifier": "snomed:438766002", + "label": "Arnadottir occupational therapy activities of daily living neurobehavioral evaluation" + }, + { + "identifier": "snomed:438776004", + "label": "Community dependency index" + }, + { + "identifier": "snomed:438780009", + "label": "Mayers lifestyle questionnaire 1" + }, + { + "identifier": "snomed:439312002", + "label": "Occupational circumstances assessment interview and rating scale forensic mental health version 4.0" + }, + { + "identifier": "snomed:439313007", + "label": "Canadian occupational performance measure" + }, + { + "identifier": "snomed:439327002", + "label": "Functional test for the hemiparetic upper extremity" + }, + { + "identifier": "snomed:439343009", + "label": "Tinetti falls efficacy scale" + }, + { + "identifier": "snomed:439359009", + "label": "Patients At Risk of Re-hospitalization case finding tool" + }, + { + "identifier": "snomed:439398004", + "label": "Mayers lifestyle questionnaire 2" + }, + { + "identifier": "snomed:439440006", + "label": "Occupational performance history interview II version 2.1" + }, + { + "identifier": "snomed:439445001", + "label": "Volitional questionnaire version 4.1" + }, + { + "identifier": "snomed:439492002", + "label": "Therapy outcome measure" + }, + { + "identifier": "snomed:439596001", + "label": "Binary individualized outcome measure" + }, + { + "identifier": "snomed:439821000124100", + "label": "Asthma treatment assessment questionnaire" + }, + { + "identifier": "snomed:439827008", + "label": "QRISK cardiovascular disease risk score" + }, + { + "identifier": "snomed:439829006", + "label": "Work environment impact scale version 2.0" + }, + { + "identifier": "snomed:439921008", + "label": "World Health Organisation (WHO) FRAX 10 year hip fracture probability score" + }, + { + "identifier": "snomed:439924000", + "label": "Occupational self assessment version 2.2" + }, + { + "identifier": "snomed:439943000", + "label": "Social functioning scale" + }, + { + "identifier": "snomed:439968003", + "label": "World Health Organisation FRAX osteoporotic fracture probability assessment tool" + }, + { + "identifier": "snomed:439971006", + "label": "Safety assessment of function and the environment for rehabilitation" + }, + { + "identifier": "snomed:440067004", + "label": "Occupational therapy task observation scale" + }, + { + "identifier": "snomed:440106008", + "label": "Westcotes individualized outcome measure" + }, + { + "identifier": "snomed:440117009", + "label": "Worker role interview version 10.0" + }, + { + "identifier": "snomed:440150009", + "label": "Pool activity level instrument" + }, + { + "identifier": "snomed:440233001", + "label": "Duke older Americans resources and services instrumental activities of daily living score" + }, + { + "identifier": "snomed:440362002", + "label": "Occupational therapy functional assessment compilation tool" + }, + { + "identifier": "snomed:440430001", + "label": "Assessment of communication and interaction skill version 4.0" + }, + { + "identifier": "snomed:440528001", + "label": "Westmead home safety assessment" + }, + { + "identifier": "snomed:440600003", + "label": "Kohlman evaluation of living skills" + }, + { + "identifier": "snomed:440683003", + "label": "Model of Human Occupation Screening Tool version 2.0" + }, + { + "identifier": "snomed:441221004", + "label": "Easy care weighted disability assessment" + }, + { + "identifier": "snomed:441939000", + "label": "International Consultation on Incontinence questionnaire" + }, + { + "identifier": "snomed:441941004", + "label": "Edinburgh claudication questionnaire" + }, + { + "identifier": "snomed:442663009", + "label": "International consultation on incontinence questionnaire short form" + }, + { + "identifier": "snomed:443116001", + "label": "Melbourne assessment of unilateral upper limb function" + }, + { + "identifier": "snomed:443124006", + "label": "Frontal assessment battery" + }, + { + "identifier": "snomed:443132003", + "label": "Sequential occupational dexterity assessment" + }, + { + "identifier": "snomed:443134002", + "label": "Single and double simultaneous visual stimulation test" + }, + { + "identifier": "snomed:443135001", + "label": "Sensory profile" + }, + { + "identifier": "snomed:443169000", + "label": "Large Allen cognitive level screening tool" + }, + { + "identifier": "snomed:443173002", + "label": "Childhood health assessment questionnaire" + }, + { + "identifier": "snomed:443204003", + "label": "Benton visual retention test" + }, + { + "identifier": "snomed:443217000", + "label": "Communication skills questionnaire" + }, + { + "identifier": "snomed:443222000", + "label": "Ages and stages questionnaire second edition" + }, + { + "identifier": "snomed:443226002", + "label": "Fatigue impact scale" + }, + { + "identifier": "snomed:443259004", + "label": "Confusion, Respiratory Rate, Blood Pressure, 65 years of age or older score" + }, + { + "identifier": "snomed:443251001", + "label": "Sensory integration inventory revised for individuals with developmental disabilities" + }, + { + "identifier": "snomed:443270006", + "label": "Single and double simultaneous tactile stimulation test" + }, + { + "identifier": "snomed:443274002", + "label": "Modular arrangement of predetermined time standards scoring tool" + }, + { + "identifier": "snomed:443289006", + "label": "Michigan hand outcomes questionnaire" + }, + { + "identifier": "snomed:443313003", + "label": "Finnish diabetes risk score" + }, + { + "identifier": "snomed:443316006", + "label": "Quality of upper extremity skills test scale" + }, + { + "identifier": "snomed:443318007", + "label": "Tinetti balance and gait scale" + }, + { + "identifier": "snomed:443319004", + "label": "Sollerman hand function test" + }, + { + "identifier": "snomed:443321009", + "label": "Anorexia nervosa stages of change questionnaire" + }, + { + "identifier": "snomed:443322002", + "label": "Activities specific balance confidence scale" + }, + { + "identifier": "snomed:443349002", + "label": "Disease activity score in rheumatoid arthritis" + }, + { + "identifier": "snomed:443350002", + "label": "Kapandji clinical opposition and reposition test of thumb score" + }, + { + "identifier": "snomed:443351003", + "label": "Functional capacity evaluation" + }, + { + "identifier": "snomed:443364002", + "label": "Modified Barthel index of activities of daily living" + }, + { + "identifier": "snomed:443370008", + "label": "Falls behavioral scale for older people" + }, + { + "identifier": "snomed:443372000", + "label": "Functional analysis of care environments assessment tool" + }, + { + "identifier": "snomed:443393002", + "label": "Stirling eating disorders scale" + }, + { + "identifier": "snomed:443397001", + "label": "Evaluation tool of children's handwriting" + }, + { + "identifier": "snomed:443421005", + "label": "Social training achievement record" + }, + { + "identifier": "snomed:443442007", + "label": "Child occupational self assessment version 2.1" + }, + { + "identifier": "snomed:443446005", + "label": "Eating disorder examination" + }, + { + "identifier": "snomed:443450003", + "label": "Asthma control test" + }, + { + "identifier": "snomed:443539004", + "label": "Disease activity score in rheumatoid arthritis using C-reactive protein" + }, + { + "identifier": "snomed:443549001", + "label": "Career interest test" + }, + { + "identifier": "snomed:443571006", + "label": "Draw a person test" + }, + { + "identifier": "snomed:443597000", + "label": "Model of creative ability assessment scale" + }, + { + "identifier": "snomed:443608006", + "label": "School function assessment" + }, + { + "identifier": "snomed:443635002", + "label": "Fitzpatrick classification of skin type" + }, + { + "identifier": "snomed:443636001", + "label": "Cognitive assessment of Minnesota" + }, + { + "identifier": "snomed:443695004", + "label": "European league against rheumatism response criteria scale" + }, + { + "identifier": "snomed:443709007", + "label": "Adelaide coma scale" + }, + { + "identifier": "snomed:443727005", + "label": "Methods time measurement" + }, + { + "identifier": "snomed:443728000", + "label": "Disease activity score 28 joint in rheumatoid arthritis" + }, + { + "identifier": "snomed:443807003", + "label": "EuroQoL five dimension questionnaire" + }, + { + "identifier": "snomed:444063009", + "label": "Broselow Luten color coding system for pediatric weight estimation" + }, + { + "identifier": "snomed:444218000", + "label": "Moberg pickup test" + }, + { + "identifier": "snomed:444219008", + "label": "Kessler psychological distress scale" + }, + { + "identifier": "snomed:444415004", + "label": "Adolescent/adult sensory profile" + }, + { + "identifier": "snomed:444621006", + "label": "Falls risk assessment score for the elderly" + }, + { + "identifier": "snomed:444776006", + "label": "Short falls efficacy scale - international" + }, + { + "identifier": "snomed:444781002", + "label": "Timed up and go mobility test" + }, + { + "identifier": "snomed:444875003", + "label": "Disabilities of the arm shoulder and hand questionnaire" + }, + { + "identifier": "snomed:444876002", + "label": "Harris hip score scale" + }, + { + "identifier": "snomed:444984002", + "label": "Dynamic gait index" + }, + { + "identifier": "snomed:444985001", + "label": "Five shot questionnaire on heavy drinking" + }, + { + "identifier": "snomed:445019007", + "label": "Confusion, urea, respiratory rate, blood pressure, 65 years of age or older score" + }, + { + "identifier": "snomed:445041007", + "label": "Geriatric depression scale short form" + }, + { + "identifier": "snomed:445047006", + "label": "Geriatric depression scale original long form" + }, + { + "identifier": "snomed:445049009", + "label": "Social phobia inventory" + }, + { + "identifier": "snomed:445050009", + "label": "Residual cancer burden index" + }, + { + "identifier": "snomed:445071004", + "label": "Carers of older people in Europe index" + }, + { + "identifier": "snomed:445074007", + "label": "Mini asthma quality of life questionnaire" + }, + { + "identifier": "snomed:445183000", + "label": "Guy's neurological disability scale" + }, + { + "identifier": "snomed:445190005", + "label": "Androgen deficiency in the aging male questionnaire" + }, + { + "identifier": "snomed:445193007", + "label": "Early warning scoring system" + }, + { + "identifier": "snomed:445195000", + "label": "Historical, clinical, risk management 20 assessing risk for violence scheme version 2" + }, + { + "identifier": "snomed:445312005", + "label": "Clinical chronic obstructive pulmonary disease questionnaire" + }, + { + "identifier": "snomed:445315007", + "label": "Geriatric depression scale 4 item form" + }, + { + "identifier": "snomed:445412006", + "label": "Addenbrooke's cognitive examination revised" + }, + { + "identifier": "snomed:445414007", + "label": "Canadian Study of Health and Aging clinical frailty scale" + }, + { + "identifier": "snomed:445452008", + "label": "Addiction Research Foundation Clinical Institute Withdrawal Assessment for Alcohol" + }, + { + "identifier": "snomed:445483007", + "label": "Berlin questionnaire for sleep apnea" + }, + { + "identifier": "snomed:445484001", + "label": "Marks and Mathews fear questionnaire" + }, + { + "identifier": "snomed:445531003", + "label": "Asthma control questionnaire" + }, + { + "identifier": "snomed:445532005", + "label": "Visual infusion phlebitis scale" + }, + { + "identifier": "snomed:445597002", + "label": "Pediatric early warning score scale" + }, + { + "identifier": "snomed:445619006", + "label": "Adult early warning scoring system" + }, + { + "identifier": "snomed:445660004", + "label": "Disabilities of the arm shoulder and hand outcome measurement sports performing arts module" + }, + { + "identifier": "snomed:445661000", + "label": "Modified early warning score scale" + }, + { + "identifier": "snomed:445670002", + "label": "Brighton pediatric early warning score scale" + }, + { + "identifier": "snomed:445871000", + "label": "Therapy outcome measure participation scale" + }, + { + "identifier": "snomed:445873002", + "label": "European pressure ulcer advisory panel classification system" + }, + { + "identifier": "snomed:445883003", + "label": "Therapy outcome measure impairment scale" + }, + { + "identifier": "snomed:445952003", + "label": "International index of erectile function" + }, + { + "identifier": "snomed:445956000", + "label": "Manchester foot pain and disability index" + }, + { + "identifier": "snomed:445957009", + "label": "Hip disability and osteoarthritis outcome score" + }, + { + "identifier": "snomed:446083007", + "label": "Erection hardness score" + }, + { + "identifier": "snomed:446087008", + "label": "Montgomery-\u00c5sberg depression rating scale" + }, + { + "identifier": "snomed:446088003", + "label": "Modified Harris hip score" + }, + { + "identifier": "snomed:446090002", + "label": "Victorian Institute of Sport Assessment-Achilles questionnaire" + }, + { + "identifier": "snomed:446161005", + "label": "Therapy outcome measure carer wellbeing scale" + }, + { + "identifier": "snomed:446167009", + "label": "Psychotic symptom rating scale" + }, + { + "identifier": "snomed:446171007", + "label": "Therapy outcome measure wellbeing scale" + }, + { + "identifier": "snomed:446173005", + "label": "Therapy outcome measure activity scale" + }, + { + "identifier": "snomed:446330006", + "label": "Penn State worry questionnaire" + }, + { + "identifier": "snomed:446391000124101", + "label": "National Cancer Institute common terminology criteria for adverse events" + }, + { + "identifier": "snomed:446605003", + "label": "Modified checklist for autism in toddlers" + }, + { + "identifier": "snomed:446619003", + "label": "Adult comorbidity evaluation-27" + }, + { + "identifier": "snomed:446825002", + "label": "Eating disorder examination questionnaire" + }, + { + "identifier": "snomed:447234009", + "label": "Subgroups for targeted treatment back screening tool" + }, + { + "identifier": "snomed:447271006", + "label": "Checklist for autism in toddlers" + }, + { + "identifier": "snomed:447278000", + "label": "Short health anxiety inventory" + }, + { + "identifier": "snomed:447312009", + "label": "Oxford elbow score" + }, + { + "identifier": "snomed:447313004", + "label": "Oxford shoulder score" + }, + { + "identifier": "snomed:448002006", + "label": "Royal College of Physicians 3 questions" + }, + { + "identifier": "snomed:448051009", + "label": "Body mass, airflow obstruction, dyspnea and exercise capacity index" + }, + { + "identifier": "snomed:448226000", + "label": "Modified Aldrete score" + }, + { + "identifier": "snomed:448236008", + "label": "Revised cardiac risk index" + }, + { + "identifier": "snomed:448382002", + "label": "European system for cardiac operative risk evaluation" + }, + { + "identifier": "snomed:448586003", + "label": "Society of Thoracic Surgeons risk calculator" + }, + { + "identifier": "snomed:448615001", + "label": "Ages and Stages Questionnaires Third Edition" + }, + { + "identifier": "snomed:448702001", + "label": "Minnesota sedation assessment tool" + }, + { + "identifier": "snomed:448880001", + "label": "Cleveland Clinic constipation score" + }, + { + "identifier": "snomed:449159002", + "label": "AVPU - alert voice pain unresponsive scale" + }, + { + "identifier": "snomed:449251000000104", + "label": "Wechsler adult intelligence scale UK (United Kingdom)" + }, + { + "identifier": "snomed:449349006", + "label": "Chronic respiratory disease questionnaire" + }, + { + "identifier": "snomed:450355004", + "label": "Obsessive compulsive inventory" + }, + { + "identifier": "snomed:450356003", + "label": "Panic disorder severity scale" + }, + { + "identifier": "snomed:450357007", + "label": "Benign prostatic hyperplasia impact index" + }, + { + "identifier": "snomed:450361001", + "label": "Clinical opiate withdrawal scale" + }, + { + "identifier": "snomed:450726005", + "label": "Impact of event scale revised" + }, + { + "identifier": "snomed:450729003", + "label": "World Health Organization surgical safety checklist first edition" + }, + { + "identifier": "snomed:450731007", + "label": "Rockall score" + }, + { + "identifier": "snomed:450734004", + "label": "Coronary artery calcium score" + }, + { + "identifier": "snomed:450736002", + "label": "Thirty second chair stand test" + }, + { + "identifier": "snomed:450739009", + "label": "Strengths and difficulties questionnaire" + }, + { + "identifier": "snomed:450740006", + "label": "Children's global assessment scale" + }, + { + "identifier": "snomed:450744002", + "label": "Action for dysphasic adults comprehension battery" + }, + { + "identifier": "snomed:450749007", + "label": "Sexual health inventory for men" + }, + { + "identifier": "snomed:450750007", + "label": "Conversation analysis profile for people with cognitive impairment" + }, + { + "identifier": "snomed:450752004", + "label": "Whooley depression screen" + }, + { + "identifier": "snomed:450753009", + "label": "Mobility inventory for agoraphobia" + }, + { + "identifier": "snomed:450756001", + "label": "Voice handicap index" + }, + { + "identifier": "snomed:450741005", + "label": "National Institutes of Health stroke scale" + }, + { + "identifier": "snomed:450987005", + "label": "Sensory modality assessment and rehabilitation technique" + }, + { + "identifier": "snomed:451020003", + "label": "Family APGAR (adaptation, partnership, growth, affection, and resolve)" + }, + { + "identifier": "snomed:451021004", + "label": "Edmonton Symptom Assessment System" + }, + { + "identifier": "snomed:451015003", + "label": "University of Alabama at Birmingham pain behavior scale" + }, + { + "identifier": "snomed:451018001", + "label": "Western Ontario and McMaster Universities osteoarthritis index" + }, + { + "identifier": "snomed:452001000124108", + "label": "Pediatric end stage liver disease score" + }, + { + "identifier": "snomed:452311000124108", + "label": "Gender, age, AFP-L3, \u03b1 fetoprotein and des-carboxy-prothrombin score" + }, + { + "identifier": "snomed:454051000124104", + "label": "Model for end-stage liver disease" + }, + { + "identifier": "snomed:454481000124101", + "label": "Insomnia severity index" + }, + { + "identifier": "snomed:456741000124109", + "label": "Friedman classification" + }, + { + "identifier": "snomed:457011000124109", + "label": "COPD assessment test" + }, + { + "identifier": "snomed:457441000124102", + "label": "Richmond Agitation-Sedation Scale" + }, + { + "identifier": "snomed:457431000124107", + "label": "Four step square test" + }, + { + "identifier": "snomed:457451000124100", + "label": "Sheehan disability scale" + }, + { + "identifier": "snomed:457461000124103", + "label": "Vividness of visual imagery questionnaire" + }, + { + "identifier": "snomed:457471000124105", + "label": "Function in sitting test" + }, + { + "identifier": "snomed:457481000124108", + "label": "Lawton instrumental activities of daily living scale" + }, + { + "identifier": "snomed:457491000124106", + "label": "Lung allocation score" + }, + { + "identifier": "snomed:457501000124103", + "label": "Mitchell score" + }, + { + "identifier": "snomed:457511000124100", + "label": "Palliative performance scale" + }, + { + "identifier": "snomed:457521000124108", + "label": "Pepper visual skills for reading test" + }, + { + "identifier": "snomed:457531000124106", + "label": "QuickDash outcome measure" + }, + { + "identifier": "snomed:457541000124101", + "label": "Receptive one-word picture vocabulary test" + }, + { + "identifier": "snomed:457851000124102", + "label": "Sensory organization test" + }, + { + "identifier": "snomed:457871000124107", + "label": "Action research arm test" + }, + { + "identifier": "snomed:457901000124107", + "label": "Vail sport test" + }, + { + "identifier": "snomed:457921000124102", + "label": "Restless legs syndrome rating scale" + }, + { + "identifier": "snomed:457941000124109", + "label": "Patient global impression of severity" + }, + { + "identifier": "snomed:457981000124103", + "label": "American Spinal Injury Association impairment scale" + }, + { + "identifier": "snomed:458001000124105", + "label": "ABCD2 Score for transient ischemic attack" + }, + { + "identifier": "snomed:458021000124100", + "label": "Yale global tic severity scale" + }, + { + "identifier": "snomed:458041000124107", + "label": "Vestibular ocular motor screening" + }, + { + "identifier": "snomed:458051000124109", + "label": "Myositis disease activity assessment tool" + }, + { + "identifier": "snomed:458071000124104", + "label": "Migraine disability assessment test" + }, + { + "identifier": "snomed:458091000124103", + "label": "Revised Trinity amputation and prosthesis experience scale" + }, + { + "identifier": "snomed:458131000124101", + "label": "Westley croup score" + }, + { + "identifier": "snomed:458151000124108", + "label": "Villalta scale" + }, + { + "identifier": "snomed:458171000124103", + "label": "Texas functional living scale" + }, + { + "identifier": "snomed:458191000124102", + "label": "Physical function intensive care unit test" + }, + { + "identifier": "snomed:458201000124104", + "label": "Spence anxiety scale" + }, + { + "identifier": "snomed:458231000124107", + "label": "Stanford integrated psychosocial assessment for transplantation" + }, + { + "identifier": "snomed:458261000124103", + "label": "Motion sensitivity assessment" + }, + { + "identifier": "snomed:458281000124108", + "label": "Rhythmic weight shift" + }, + { + "identifier": "snomed:458301000124107", + "label": "Duke activity status index" + }, + { + "identifier": "snomed:458331000124104", + "label": "Zwolle risk score" + }, + { + "identifier": "snomed:458351000124106", + "label": "Quick inventory of depressive symptomatology" + }, + { + "identifier": "snomed:458381000124103", + "label": "Revised face legs activity cry consolability scale" + }, + { + "identifier": "snomed:458401000124103", + "label": "Rate your plate" + }, + { + "identifier": "snomed:458421000124108", + "label": "Transition readiness assessment" + }, + { + "identifier": "snomed:458441000124101", + "label": "Trial of labor after cesarean calculator" + }, + { + "identifier": "snomed:458501000124102", + "label": "Young mania rating scale" + }, + { + "identifier": "snomed:458541000124100", + "label": "Test of problem solving" + }, + { + "identifier": "snomed:459231000124102", + "label": "Sequential Organ Failure Assessment" + }, + { + "identifier": "snomed:459431000124103", + "label": "Dementia severity rating scale" + }, + { + "identifier": "snomed:461581000124108", + "label": "King-Devick test" + }, + { + "identifier": "snomed:461601000124103", + "label": "Forgotten Joint Score" + }, + { + "identifier": "snomed:461631000124106", + "label": "Transport Risk Index of Physiologic Stability" + }, + { + "identifier": "snomed:464491000124109", + "label": "NCCN (National Comprehensive Cancer Network) distress thermometer" + }, + { + "identifier": "snomed:468371000124106", + "label": "Atherosclerotic cardiovascular disease risk estimator plus" + }, + { + "identifier": "snomed:470871000124106", + "label": "Minnesota pectoralis risk score" + }, + { + "identifier": "snomed:470921000124101", + "label": "United States household food security survey module" + }, + { + "identifier": "snomed:470971000124100", + "label": "Minnesota acute graft-versus-host disease risk score" + }, + { + "identifier": "snomed:470991000124104", + "label": "Kansas City cardiomyopathy questionnaire" + }, + { + "identifier": "snomed:471591000124104", + "label": "Disabilities of the arm, shoulder and hand questionnaire" + }, + { + "identifier": "snomed:471601000124107", + "label": "Frequency, intensity, and burden of side effects rating scale" + }, + { + "identifier": "snomed:471611000124105", + "label": "Breast Imaging Reporting and Data System Fourth Edition" + }, + { + "identifier": "snomed:471621000124102", + "label": "Breast Imaging Reporting and Data System Fifth Edition" + }, + { + "identifier": "snomed:472631000124105", + "label": "Family Environment Scale" + }, + { + "identifier": "snomed:473297005", + "label": "Psychotic symptom rating scales auditory hallucination subscale" + }, + { + "identifier": "snomed:473298000", + "label": "Psychotic symptom rating scales delusions subscale" + }, + { + "identifier": "snomed:473311008", + "label": "Addenbrooke's cognitive examination revised language subscale" + }, + { + "identifier": "snomed:473312001", + "label": "Addenbrooke's cognitive examination revised attention and orientation subscale" + }, + { + "identifier": "snomed:473313006", + "label": "Addenbrooke's cognitive examination revised memory subscale" + }, + { + "identifier": "snomed:473314000", + "label": "Addenbrooke's cognitive examination revised visuospatial subscale" + }, + { + "identifier": "snomed:473315004", + "label": "Addenbrooke's cognitive examination revised fluency subscale" + }, + { + "identifier": "snomed:473322007", + "label": "Ages and Stages Questionnaires Third Edition communication subscale" + }, + { + "identifier": "snomed:473323002", + "label": "Ages and Stages Questionnaires Third Edition fine motor subscale" + }, + { + "identifier": "snomed:473324008", + "label": "Ages and Stages Questionnaires Third Edition gross motor subscale" + }, + { + "identifier": "snomed:473325009", + "label": "Ages and Stages Questionnaires Third Edition personal-social subscale" + }, + { + "identifier": "snomed:473326005", + "label": "Ages and Stages Questionnaires Third Edition problem solving subscale" + }, + { + "identifier": "snomed:473339009", + "label": "Chronic respiratory disease questionnaire dyspnea subscale" + }, + { + "identifier": "snomed:473340006", + "label": "Chronic respiratory disease questionnaire emotional function subscale" + }, + { + "identifier": "snomed:473341005", + "label": "Chronic respiratory disease questionnaire fatigue subscale" + }, + { + "identifier": "snomed:473343008", + "label": "Chronic respiratory disease questionnaire mastery subscale" + }, + { + "identifier": "snomed:473349007", + "label": "Eating disorder examination questionnaire eating concern subscale" + }, + { + "identifier": "snomed:473350007", + "label": "Eating disorder examination questionnaire shape concern subscale" + }, + { + "identifier": "snomed:473351006", + "label": "Eating disorder examination questionnaire weight concern subscale" + }, + { + "identifier": "snomed:473352004", + "label": "Eating disorder examination questionnaire restraint subscale" + }, + { + "identifier": "snomed:481281000000100", + "label": "PCL-5 - post-traumatic stress disorder checklist for DSM-5 (Diagnostic and Statistical Manual of Mental Disorders - Fifth edition)" + }, + { + "identifier": "snomed:481901000000103", + "label": "PGSI - Problem Gambling Severity Index" + }, + { + "identifier": "snomed:493321000000108", + "label": "Walsall community pressure sore risk scale" + }, + { + "identifier": "snomed:493331000000105", + "label": "Emergency admission risk likelihood index" + }, + { + "identifier": "snomed:493361000000100", + "label": "Glasgow coma scale, original version" + }, + { + "identifier": "snomed:493371000000107", + "label": "Glasgow coma scale, modified version" + }, + { + "identifier": "snomed:493381000000109", + "label": "Norton pressure sore risk scale" + }, + { + "identifier": "snomed:493391000000106", + "label": "European Union scale for peak expiratory flow rate, adults" + }, + { + "identifier": "snomed:493401000000109", + "label": "European Union scale for peak expiratory flow rate, children" + }, + { + "identifier": "snomed:493431000000103", + "label": "Barthel United Kingdom index of activities of daily living" + }, + { + "identifier": "snomed:493961000000104", + "label": "Barriers to employment and coping efficacy scale" + }, + { + "identifier": "snomed:494011000000103", + "label": "Obligatory exercise questionnaire" + }, + { + "identifier": "snomed:494401000000107", + "label": "Oxford hip scale" + }, + { + "identifier": "snomed:494411000000109", + "label": "Work ability index" + }, + { + "identifier": "snomed:494421000000103", + "label": "Stereognosis test scale" + }, + { + "identifier": "snomed:494431000000101", + "label": "Scleroderma health assessment questionnaire" + }, + { + "identifier": "snomed:494441000000105", + "label": "Rheumatoid arthritis work instability scale" + }, + { + "identifier": "snomed:494451000000108", + "label": "Disabilities of the Arm, Shoulder and Hand outcome measurement" + }, + { + "identifier": "snomed:494461000000106", + "label": "Quick disabilities of the arm shoulder and hand outcome measurement" + }, + { + "identifier": "snomed:494471000000104", + "label": "Patient rated wrist evaluation scale" + }, + { + "identifier": "snomed:494481000000102", + "label": "PSEQ - Pain Self-Efficacy Questionnaire" + }, + { + "identifier": "snomed:494491000000100", + "label": "Neck disability index" + }, + { + "identifier": "snomed:494591000000104", + "label": "Joint protection behaviour assessment questionnaire" + }, + { + "identifier": "snomed:494611000000107", + "label": "Home falls and accidents screening tool" + }, + { + "identifier": "snomed:494621000000101", + "label": "Grip ability test scale" + }, + { + "identifier": "snomed:494701000000103", + "label": "Bristol activities of daily living scale" + }, + { + "identifier": "snomed:494711000000101", + "label": "Brief pain inventory" + }, + { + "identifier": "snomed:494721000000107", + "label": "Brief pain coping inventory" + }, + { + "identifier": "snomed:494741000000100", + "label": "Repeatable battery for the assessment of neuropsychological status" + }, + { + "identifier": "snomed:495291000000102", + "label": "Jamar dynamometer scale" + }, + { + "identifier": "snomed:495301000000103", + "label": "Hand volumeter test scale" + }, + { + "identifier": "snomed:495311000000101", + "label": "Dynamometer pinch and gross grip scale" + }, + { + "identifier": "snomed:495321000000107", + "label": "Semmes-Weinstein monofilament score" + }, + { + "identifier": "snomed:495331000000109", + "label": "Arthritis hand function test" + }, + { + "identifier": "snomed:504091000000103", + "label": "Improving access to psychological therapies programme phobia scale - certain situations because of a fear of particular objects or activities" + }, + { + "identifier": "snomed:504101000000106", + "label": "Improving access to psychological therapies programme phobia scale - certain situations because of a fear of having a panic attack or other distressing symptoms" + }, + { + "identifier": "snomed:504111000000108", + "label": "Improving access to psychological therapies programme phobia scale - social situations due to a fear of being embarrassed or making a fool of myself" + }, + { + "identifier": "snomed:504391000000101", + "label": "Age, blood pressure, clinical features, duration, diabetes 2 stroke risk score" + }, + { + "identifier": "snomed:506671000000104", + "label": "QRISK2 cardiovascular disease 10 year risk score" + }, + { + "identifier": "snomed:507801000000108", + "label": "Vestibular disorders activities of daily living scale" + }, + { + "identifier": "snomed:514891000000105", + "label": "Framingham coronary heart disease 10 year risk score adjusted to Joint British Societies 2 guidelines" + }, + { + "identifier": "snomed:515381000000104", + "label": "howRu rating scale" + }, + { + "identifier": "snomed:522181000000104", + "label": "Gold standards framework surprise question" + }, + { + "identifier": "snomed:57671000052108", + "label": "Chronic Obstructive Pulmonary Disease Assessment Test scale" + }, + { + "identifier": "snomed:609368000", + "label": "Frankl behavioral rating scale" + }, + { + "identifier": "snomed:61451000000100", + "label": "EVGS - Edinburgh Visual Gait Score" + }, + { + "identifier": "snomed:61891000000106", + "label": "MACS (Manual Ability Classification System) for Children with Cerebral Palsy 4-18 years" + }, + { + "identifier": "snomed:61931000000101", + "label": "EDACS - Eating and Drinking Ability Classification System" + }, + { + "identifier": "snomed:62021000000106", + "label": "CFCS - Communication Function Classification System" + }, + { + "identifier": "snomed:699200007", + "label": "Pittsburgh sleep quality index" + }, + { + "identifier": "snomed:700493008", + "label": "DoloTest" + }, + { + "identifier": "snomed:703500002", + "label": "Reaction Level Scale" + }, + { + "identifier": "snomed:703964001", + "label": "Phonological awareness profile" + }, + { + "identifier": "snomed:703965000", + "label": "Children's Communication Checklist Second Edition" + }, + { + "identifier": "snomed:704154001", + "label": "Hypertension, abnormal renal/liver function, stroke, bleeding history or predisposition, labile international normalized ratio, elderly over 65, and drugs/alcohol concomitantly score" + }, + { + "identifier": "snomed:704229009", + "label": "Peter and the cat narrative assessment" + }, + { + "identifier": "snomed:704230004", + "label": "Wiig criterion referenced inventory of language" + }, + { + "identifier": "snomed:704231000", + "label": "Strong narrative assessment procedure" + }, + { + "identifier": "snomed:704232007", + "label": "Developmental, dimensional and diagnostic interview" + }, + { + "identifier": "snomed:704501007", + "label": "Generalized Anxiety Disorder 7 item scale" + }, + { + "identifier": "snomed:704500008", + "label": "Framingham type B behavior pattern measure" + }, + { + "identifier": "snomed:705003005", + "label": "Stroke impact scale version 3.0" + }, + { + "identifier": "snomed:705004004", + "label": "Leeds revised acne grading system" + }, + { + "identifier": "snomed:705005003", + "label": "Hypomania checklist 32 item revised" + }, + { + "identifier": "snomed:705030000", + "label": "Lymphedema quality of life tool (arm)" + }, + { + "identifier": "snomed:705031001", + "label": "Lymphedema quality of life tool (leg)" + }, + { + "identifier": "snomed:705032008", + "label": "Occupational circumstances assessment interview and rating scale version 4.0" + }, + { + "identifier": "snomed:707621005", + "label": "Gross motor function classification system for cerebral palsy" + }, + { + "identifier": "snomed:708735004", + "label": "Epworth Sleepiness Scale" + }, + { + "identifier": "snomed:708736003", + "label": "Follicular Lymphoma International Prognostic Index" + }, + { + "identifier": "snomed:708895006", + "label": "Deauville five point scale" + }, + { + "identifier": "snomed:711294002", + "label": "Play Observation Kit" + }, + { + "identifier": "snomed:711434002", + "label": "Common Terminology Criteria for Adverse Events" + }, + { + "identifier": "snomed:711452002", + "label": "Assessment of comprehension of expression 6-11" + }, + { + "identifier": "snomed:7121000122100", + "label": "Pain Assessment in Advanced Dementia Scale" + }, + { + "identifier": "snomed:712351000000100", + "label": "Face arm speech test" + }, + { + "identifier": "snomed:712724008", + "label": "Vanderbilt Assessment Scale" + }, + { + "identifier": "snomed:712825001", + "label": "HOSPITAL readmission risk score" + }, + { + "identifier": "snomed:713009001", + "label": "Manchester Triage System" + }, + { + "identifier": "snomed:713010006", + "label": "Emergency Severity Index" + }, + { + "identifier": "snomed:713048001", + "label": "Measure Yourself Medical Outcome Profile" + }, + { + "identifier": "snomed:713062008", + "label": "Sure of myself, Understand information, Risk-benefit ratio, Encouragement test" + }, + { + "identifier": "snomed:713198003", + "label": "Oxford Cognitive Screen" + }, + { + "identifier": "snomed:713262003", + "label": "Mini-Cog" + }, + { + "identifier": "snomed:713605006", + "label": "Kessler Psychological Distress Scale K10" + }, + { + "identifier": "snomed:713606007", + "label": "Kessler Psychological Distress Scale K6" + }, + { + "identifier": "snomed:713630009", + "label": "Groningen Frailty Indicator" + }, + { + "identifier": "snomed:713634000", + "label": "Frailty Index" + }, + { + "identifier": "snomed:713663002", + "label": "Carer Support Needs Assessment Tool" + }, + { + "identifier": "snomed:713678009", + "label": "CHA2DS2-VASc score" + }, + { + "identifier": "snomed:713863004", + "label": "Patient Activation Measure" + }, + { + "identifier": "snomed:714281003", + "label": "DemTect scale" + }, + { + "identifier": "snomed:714283000", + "label": "Short Physical Performance Battery" + }, + { + "identifier": "snomed:714284006", + "label": "Everyday Cognition questionnaire" + }, + { + "identifier": "snomed:714286008", + "label": "Brief Parental Self-efficacy Scale" + }, + { + "identifier": "snomed:714287004", + "label": "Pain Self-efficacy Questionnaire" + }, + { + "identifier": "snomed:714288009", + "label": "Short Warwick-Edinburgh Mental Well-being Scale" + }, + { + "identifier": "snomed:715816003", + "label": "Adverse Childhood Experience questionnaire" + }, + { + "identifier": "snomed:715912002", + "label": "Bay Area Functional Performance Evaluation" + }, + { + "identifier": "snomed:716202005", + "label": "Apnea Hypopnea Index" + }, + { + "identifier": "snomed:716303003", + "label": "Cormack and Lehane system" + }, + { + "identifier": "snomed:716368005", + "label": "Holborn Reading Scale" + }, + { + "identifier": "snomed:716371002", + "label": "Hoehn and Yahr Scale" + }, + { + "identifier": "snomed:716567001", + "label": "International Prognostic Index" + }, + { + "identifier": "snomed:716595001", + "label": "Voice Impact Profile" + }, + { + "identifier": "snomed:716597009", + "label": "New Reynell Developmental Language Scales" + }, + { + "identifier": "snomed:716601009", + "label": "20-item General Health Questionnaire" + }, + { + "identifier": "snomed:716758003", + "label": "SCAN-A test for auditory processing disorders in adolescents and adults" + }, + { + "identifier": "snomed:716838007", + "label": "Graded Word Spelling Test" + }, + { + "identifier": "snomed:716873009", + "label": "Assessment of Intelligibility of Dysarthric Speech" + }, + { + "identifier": "snomed:717009002", + "label": "Communication Activities of Daily Living Second Edition" + }, + { + "identifier": "snomed:717040009", + "label": "GSRT - Gray Silent Reading Test" + }, + { + "identifier": "snomed:717129004", + "label": "Claus Model" + }, + { + "identifier": "snomed:717130009", + "label": "Breast Cancer Risk Assessment Tool" + }, + { + "identifier": "snomed:717320008", + "label": "Vocal Profile Analysis Scheme" + }, + { + "identifier": "snomed:717321007", + "label": "Buffalo III Voice Profile" + }, + { + "identifier": "snomed:717350000", + "label": "Centor criteria" + }, + { + "identifier": "snomed:717351001", + "label": "Pain Catastrophizing Scale" + }, + { + "identifier": "snomed:717352008", + "label": "Gesell Developmental Observation Revised" + }, + { + "identifier": "snomed:717353003", + "label": "Boehm-3 Preschool" + }, + { + "identifier": "snomed:717354009", + "label": "Snijders-Oomen Nonverbal Intelligence Scale Revised 2.5-7" + }, + { + "identifier": "snomed:717673001", + "label": "Stuttering Prediction Instrument for Young Children" + }, + { + "identifier": "snomed:717676009", + "label": "Apraxia Battery for Adults Second Edition" + }, + { + "identifier": "snomed:717679002", + "label": "Revised Kendrick Battery for detection of dementia in the elderly" + }, + { + "identifier": "snomed:717682007", + "label": "Merrill-Palmer-Revised Scales of Development" + }, + { + "identifier": "snomed:717683002", + "label": "Functional Communication Profile Revised" + }, + { + "identifier": "snomed:717684008", + "label": "Yale Swallow Protocol" + }, + { + "identifier": "snomed:717685009", + "label": "Macmillan Readers Level Test" + }, + { + "identifier": "snomed:717686005", + "label": "Boone Voice Program for Children" + }, + { + "identifier": "snomed:718032000", + "label": "Outcome Rating Scale" + }, + { + "identifier": "snomed:718035003", + "label": "Stanford Binet intelligence scales fifth edition" + }, + { + "identifier": "snomed:718037006", + "label": "Snijders-Oomen Nonverbal Intelligence Scale Revised 6-40" + }, + { + "identifier": "snomed:718042003", + "label": "Western Aphasia Battery Revised" + }, + { + "identifier": "snomed:718044002", + "label": "Listening Skills Checklist" + }, + { + "identifier": "snomed:718046000", + "label": "Renfrew Action Picture Test Revised" + }, + { + "identifier": "snomed:718049007", + "label": "Test for Reception of Grammar Version 2" + }, + { + "identifier": "snomed:718081003", + "label": "Consensus Auditory-Perceptual Evaluation of Voice" + }, + { + "identifier": "snomed:718086008", + "label": "Intelligibility in Context Scale" + }, + { + "identifier": "snomed:718088009", + "label": "Rivermead Behavioral Memory Test Third Edition" + }, + { + "identifier": "snomed:718091009", + "label": "Auditory Skills Assessment" + }, + { + "identifier": "snomed:718129001", + "label": "Northwestern Syntax Screening Test" + }, + { + "identifier": "snomed:718148002", + "label": "Raven's Advanced Progressive Matrices" + }, + { + "identifier": "snomed:718150005", + "label": "Vineland Adaptive Behavior Scales Second Edition" + }, + { + "identifier": "snomed:718151009", + "label": "Revised Child Impact of Events Scale 8" + }, + { + "identifier": "snomed:718155000", + "label": "Strengths and Difficulties Questionnaire for parents or teachers of 4-17 year olds" + }, + { + "identifier": "snomed:718156004", + "label": "Strengths and Difficulties Questionnaire for parents or educators of 2-4 year olds" + }, + { + "identifier": "snomed:718160001", + "label": "Modified Strengths and Difficulties Questionnaire 8 Impact subscale" + }, + { + "identifier": "snomed:718161002", + "label": "Modified Strengths and Difficulties Questionnaire 8" + }, + { + "identifier": "snomed:718162009", + "label": "Strengths and Difficulties Questionnaire self-rated for 11-17 year olds" + }, + { + "identifier": "snomed:718170004", + "label": "30 item General Health Questionnaire" + }, + { + "identifier": "snomed:718207005", + "label": "Bracken Basic Concept Scale Expressive" + }, + { + "identifier": "snomed:718339000", + "label": "MARS - Moss Attention Rating Scale" + }, + { + "identifier": "snomed:718363008", + "label": "28 item General Health Questionnaire" + }, + { + "identifier": "snomed:718385002", + "label": "12 item General Health Questionnaire" + }, + { + "identifier": "snomed:718405000", + "label": "House-Brackmann facial nerve grading scale" + }, + { + "identifier": "snomed:718427009", + "label": "Warwick Edinburgh Mental Well Being Scale" + }, + { + "identifier": "snomed:718428004", + "label": "Me and My School Questionnaire behavioral difficulties subscale" + }, + { + "identifier": "snomed:718433000", + "label": "Group Session Rating Scale" + }, + { + "identifier": "snomed:718435007", + "label": "Child Group Session Rating Scale" + }, + { + "identifier": "snomed:718436008", + "label": "Young Person's Clinical Outcomes in Routine Evaluation" + }, + { + "identifier": "snomed:718438009", + "label": "Session Rating Scale" + }, + { + "identifier": "snomed:718440004", + "label": "Clinical Outcomes in Routine Evaluation Learning Disabilities" + }, + { + "identifier": "snomed:718463009", + "label": "Young Child Outcome Rating Scale" + }, + { + "identifier": "snomed:718493003", + "label": "Me and My School Questionnaire" + }, + { + "identifier": "snomed:718517001", + "label": "PLS-4 - Preschool Language Scale Fourth Edition" + }, + { + "identifier": "snomed:718561009", + "label": "Screening Tool to Alert doctors to Right Treatment" + }, + { + "identifier": "snomed:718563007", + "label": "RCADS-P (Revised Children's Anxiety and Depression Scale Parent Version) total anxiety subscale" + }, + { + "identifier": "snomed:718580006", + "label": "Dyadic Assessment of Naturalistic Caregiver child Experiences" + }, + { + "identifier": "snomed:718581005", + "label": "Wong-Baker FACES pain assessment scale" + }, + { + "identifier": "snomed:718619009", + "label": "Clinical Institute Withdrawal Assessment for Benzodiazepines scale" + }, + { + "identifier": "snomed:718639008", + "label": "Mothers' Object Relations Scale - Short Form" + }, + { + "identifier": "snomed:718641009", + "label": "Mothers' Object Relations Scale - Short Form - Warmth Subscale" + }, + { + "identifier": "snomed:718642002", + "label": "Mothers' Object Relations Scale - Short Form - Invasiveness Subscale" + }, + { + "identifier": "snomed:718644001", + "label": "STOPP - Screening Tool of Older Person's Prescriptions" + }, + { + "identifier": "snomed:718646004", + "label": "Amyotrophic Lateral Sclerosis Functional Rating Scale Revised" + }, + { + "identifier": "snomed:718650006", + "label": "DIALOG patient rated outcome measure" + }, + { + "identifier": "snomed:718699005", + "label": "Lysholm Knee Scoring Scale" + }, + { + "identifier": "snomed:718710002", + "label": "Process of Recovery Questionnaire" + }, + { + "identifier": "snomed:718728000", + "label": "RCADS-P - Revised Children's Anxiety and Depression Scale Parent Version" + }, + { + "identifier": "snomed:718729008", + "label": "RCADS-P (Revised Children's Anxiety and Depression Scale Parent Version) social phobia subscale" + }, + { + "identifier": "snomed:718730003", + "label": "RCADS-P (Revised Children's Anxiety and Depression Scale Parent Version) panic subscale" + }, + { + "identifier": "snomed:718731004", + "label": "RCADS-P (Revised Children's Anxiety and Depression Scale Parent Version) obsession compulsion subscale" + }, + { + "identifier": "snomed:718732006", + "label": "RCADS-P (Revised Children's Anxiety and Depression Scale Parent Version) separation anxiety subscale" + }, + { + "identifier": "snomed:718733001", + "label": "RCADS-P (Revised Children's Anxiety and Depression Scale Parent Version) generalized anxiety subscale" + }, + { + "identifier": "snomed:718734007", + "label": "RCADS-P (Revised Children's Anxiety and Depression Scale Parent Version) depression subscale" + }, + { + "identifier": "snomed:718735008", + "label": "RCADS-P (Revised Children's Anxiety and Depression Scale Parent Version) total anxiety and depression subscale" + }, + { + "identifier": "snomed:718738005", + "label": "RCADS - Revised Children's Anxiety and Depression Scale" + }, + { + "identifier": "snomed:718739002", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) depression subscale" + }, + { + "identifier": "snomed:718741001", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) panic subscale" + }, + { + "identifier": "snomed:718742008", + "label": "CADS (Revised Children's Anxiety and Depression Scale) social phobia subscale" + }, + { + "identifier": "snomed:718743003", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) total anxiety subscale" + }, + { + "identifier": "snomed:718744009", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) obsession compulsion subscale" + }, + { + "identifier": "snomed:718745005", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) total anxiety and depression subscale" + }, + { + "identifier": "snomed:718746006", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) separation anxiety subscale" + }, + { + "identifier": "snomed:718747002", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) generalized anxiety subscale" + }, + { + "identifier": "snomed:718760008", + "label": "Child Session Rating Scale" + }, + { + "identifier": "snomed:718863002", + "label": "Lower Extremity Functional Scale" + }, + { + "identifier": "snomed:718867001", + "label": "OPHI-II (Occupational Performance History Interview II) Version 2.1 occupational identity scale" + }, + { + "identifier": "snomed:718870002", + "label": "OPHI-II (Occupational Performance History Interview II) Version 2.1 occupational settings (environment) scale" + }, + { + "identifier": "snomed:718871003", + "label": "OPHI-II (Occupational Performance History Interview II) Version 2.1 occupational competence scale" + }, + { + "identifier": "snomed:718876008", + "label": "M-WCST - Modified Wisconsin Card Sorting Test" + }, + { + "identifier": "snomed:718913008", + "label": "CAARMS - Comprehensive Assessment of At-Risk Mental States" + }, + { + "identifier": "snomed:718957007", + "label": "Integrated Palliative care Outcome Scale 5 Staff Version (1 week recall period)" + }, + { + "identifier": "snomed:718967002", + "label": "IPOS (Integrated Palliative care Outcome Scale) Staff Version (1 week recall period)" + }, + { + "identifier": "snomed:718969004", + "label": "Integrated Palliative care Outcome Scale 5 Staff Version (3 day recall period)" + }, + { + "identifier": "snomed:718971004", + "label": "Integrated Palliative care Outcome Scale Staff Version (3 day recall period)" + }, + { + "identifier": "snomed:718973001", + "label": "Integrated Palliative care Outcome Scale Patient Version (3 day recall period)" + }, + { + "identifier": "snomed:718974007", + "label": "Integrated Palliative care Outcome Scale 5 Patient Version (3 day recall period)" + }, + { + "identifier": "snomed:718975008", + "label": "Integrated Palliative care Outcome Scale Patient Version (1 week recall period)" + }, + { + "identifier": "snomed:718976009", + "label": "Integrated Palliative care Outcome Scale 5 Patient Version (1 week recall period)" + }, + { + "identifier": "snomed:718987001", + "label": "PLS-5 - Preschool Language Scale Fifth Edition" + }, + { + "identifier": "snomed:718989003", + "label": "TTFC-2 - Token Test for Children Second Edition" + }, + { + "identifier": "snomed:718993009", + "label": "BAS-3 - British Ability Scales Third Edition" + }, + { + "identifier": "snomed:719075004", + "label": "Wepman Auditory Discrimination Test Second Edition" + }, + { + "identifier": "snomed:719082000", + "label": "CELF-5 - Clinical Evaluation of Language Fundamentals Fifth Edition" + }, + { + "identifier": "snomed:719091001", + "label": "WHODAS (World Health Organization Disability Assessment Schedule) 2.0" + }, + { + "identifier": "snomed:719110003", + "label": "BBCS-3:R - Bracken Basic Concept Scale Third Edition: Receptive" + }, + { + "identifier": "snomed:719112006", + "label": "DDST-II - Denver Developmental Screening Test Second Edition" + }, + { + "identifier": "snomed:719118005", + "label": "CVLT-C (California Verbal Learning Test Children's Version)" + }, + { + "identifier": "snomed:719122000", + "label": "STDAS-2 - Screening Test for Developmental Apraxia of Speech Second Edition" + }, + { + "identifier": "snomed:719127006", + "label": "Patient-Specific Functional Scale" + }, + { + "identifier": "snomed:719128001", + "label": "POEM - Patient-Oriented Eczema Measure" + }, + { + "identifier": "snomed:719131000", + "label": "Neurological Disorders Depression Inventory in Epilepsy" + }, + { + "identifier": "snomed:719146007", + "label": "Bedside Evaluation Screening Test Second Edition" + }, + { + "identifier": "snomed:719269000", + "label": "Rivermead Activities of Daily Living Scale" + }, + { + "identifier": "snomed:719312002", + "label": "Illinois Test of Psycholinguistic Abilities Third Edition" + }, + { + "identifier": "snomed:719318003", + "label": "Phonological Awareness Test Second Edition" + }, + { + "identifier": "snomed:719322008", + "label": "Test of Language Development Fourth Edition" + }, + { + "identifier": "snomed:719332001", + "label": "Test of Word Finding Third Edition" + }, + { + "identifier": "snomed:719335004", + "label": "Children's Test of Nonword Repetition" + }, + { + "identifier": "snomed:719782009", + "label": "Goldman-Fristoe Test for Articulation Second Edition" + }, + { + "identifier": "snomed:719783004", + "label": "Goldman-Fristoe Test for Articulation Third Edition" + }, + { + "identifier": "snomed:719872000", + "label": "Fibrosis-4 index" + }, + { + "identifier": "snomed:719874004", + "label": "Parenting Daily Hassles Scale" + }, + { + "identifier": "snomed:719878001", + "label": "Social Satisfaction Questionnaire" + }, + { + "identifier": "snomed:719935005", + "label": "TAPS-3 - Test of Auditory Processing Skills Third Edition" + }, + { + "identifier": "snomed:719938007", + "label": "TACL-3 - Test for Auditory Comprehension of Language Third Edition" + }, + { + "identifier": "snomed:719939004", + "label": "TACL-4 - Test for Auditory Comprehension of Language Fourth Edition" + }, + { + "identifier": "snomed:719940002", + "label": "New Salford Sentence Reading Test" + }, + { + "identifier": "snomed:719953004", + "label": "Rancho Los Amigos Levels of Cognitive Functioning Scale" + }, + { + "identifier": "snomed:719977005", + "label": "Communication Activities of Daily Living" + }, + { + "identifier": "snomed:719994007", + "label": "REEL-2 (Receptive Expressive Emergent Language Scale - second edition)" + }, + { + "identifier": "snomed:720198001", + "label": "SCORE Index of Family Function and Change 15" + }, + { + "identifier": "snomed:720403007", + "label": "SCAN-C Test for Auditory Processing Disorders in Children" + }, + { + "identifier": "snomed:720531001", + "label": "SCAN-3C Test for Auditory Processing Disorders in Children" + }, + { + "identifier": "snomed:720547004", + "label": "RCBA-2 - Reading Comprehension Battery for Aphasia Second Edition" + }, + { + "identifier": "snomed:720554005", + "label": "REEL-3 - Receptive Expressive Emergent Language Test Third Edition" + }, + { + "identifier": "snomed:720558008", + "label": "SCORE Index of Family Function and Change 15 Dimension 1 Strengths and Adaptability" + }, + { + "identifier": "snomed:720562002", + "label": "SCORE Index of Family Function and Change 15 Dimension 2 Overwhelmed by Difficulties" + }, + { + "identifier": "snomed:720563007", + "label": "SCORE Index of Family Function and Change 15 Dimension 3 Disrupted Communication" + }, + { + "identifier": "snomed:722217005", + "label": "Schonell graded spelling test" + }, + { + "identifier": "snomed:722225007", + "label": "Schonell graded reading test" + }, + { + "identifier": "snomed:722818007", + "label": "BBPS - Boston bowel preparation scale" + }, + { + "identifier": "snomed:723616003", + "label": "ASQ:SE-2 - Ages and Stages Questionnaires: Social-Emotional second edition" + }, + { + "identifier": "snomed:723642003", + "label": "HCR-20 V3 - Historical Clinical Risk management-20 version 3" + }, + { + "identifier": "snomed:725805009", + "label": "School AMPS (Assessment of Motor and Process Skills)" + }, + { + "identifier": "snomed:725806005", + "label": "Sensory Profile 2" + }, + { + "identifier": "snomed:725809003", + "label": "Miller Function and Participation Scales" + }, + { + "identifier": "snomed:725813005", + "label": "ACS - Activity Card Sort" + }, + { + "identifier": "snomed:725814004", + "label": "Occupational Therapy Driver Off Road Assessment Battery" + }, + { + "identifier": "snomed:725816002", + "label": "Assessment of Occupational Functioning Modified Interest Checklist" + }, + { + "identifier": "snomed:725818001", + "label": "Residential Environment Impact Scale Version 4.0" + }, + { + "identifier": "snomed:725820003", + "label": "Children's Assessment of Participation and Enjoyment" + }, + { + "identifier": "snomed:725825008", + "label": "Rookwood Driving Battery" + }, + { + "identifier": "snomed:725829002", + "label": "Evaluation of Social Interaction" + }, + { + "identifier": "snomed:725832004", + "label": "Child and Adolescent Scale of Participation" + }, + { + "identifier": "snomed:725834003", + "label": "Detailed Assessment of Speed of Handwriting" + }, + { + "identifier": "snomed:725843007", + "label": "Penn Parkinson's Daily Activities Questionnaire-15" + }, + { + "identifier": "snomed:725878007", + "label": "Participation and Environment Measure for Children and Youth" + }, + { + "identifier": "snomed:725881002", + "label": "Preferences for Activities of Children" + }, + { + "identifier": "snomed:725886007", + "label": "Movement Assessment Battery for Children Second Edition" + }, + { + "identifier": "snomed:725887003", + "label": "Movement Assessment Battery for Children Checklist Second Edition" + }, + { + "identifier": "snomed:735258002", + "label": "CHA2DS2-VASc (congestive heart failure, hypertension, age 2, diabetes mellitus, stroke 2, vascular disease, age, sex category) score" + }, + { + "identifier": "snomed:736042002", + "label": "CRAFFT Screening Test" + }, + { + "identifier": "snomed:736043007", + "label": "CRAFFT Screening Test version 2.0" + }, + { + "identifier": "snomed:736639007", + "label": "International Consultation on Incontinence Questionnaire-Urinary Incontinence-Short Form" + }, + { + "identifier": "snomed:736707008", + "label": "CPAx - Chelsea Critical Care Physical Assessment tool" + }, + { + "identifier": "snomed:736709006", + "label": "PASS - Postural Assessment Scale for Stroke Patients" + }, + { + "identifier": "snomed:736952000", + "label": "FRAX (fracture risk assessment tool) osteoporotic fracture probability assessment tool" + }, + { + "identifier": "snomed:736953005", + "label": "FRAX (fracture risk assessment tool) hip fracture probability assessment tool" + }, + { + "identifier": "snomed:738521000000108", + "label": "PUFA (pulpal involvement, ulceration, fistula and abscess) index" + }, + { + "identifier": "snomed:739663003", + "label": "Diabetes Treatment Satisfaction Questionnaire status version" + }, + { + "identifier": "snomed:739664009", + "label": "Diabetes Treatment Satisfaction Questionnaire change version" + }, + { + "identifier": "snomed:747801000000104", + "label": "iPCQ - Institute for Medical Technology Assessment Productivity Cost Questionnaire" + }, + { + "identifier": "snomed:747821000000108", + "label": "IAPT (Improving Access to Psychological Therapies) assessment PEQ (Patient Experience Questionnaire)" + }, + { + "identifier": "snomed:747831000000105", + "label": "IAPT (Improving Access to Psychological Therapies) treatment PEQ (Patient Experience Questionnaire)" + }, + { + "identifier": "snomed:754221000000103", + "label": "General practitioner assessment of cognition patient examination" + }, + { + "identifier": "snomed:754241000000105", + "label": "General practitioner assessment of cognition informant interview" + }, + { + "identifier": "snomed:758711000000105", + "label": "PHQ-9 - Patient health questionnaire 9" + }, + { + "identifier": "snomed:758901000000105", + "label": "Threshold assessment grid" + }, + { + "identifier": "snomed:761865002", + "label": "POS-S Renal (Palliative care Outcome Scale symptom list for end-stage renal disease)" + }, + { + "identifier": "snomed:762241007", + "label": "Dundee Coronary Risk Disk" + }, + { + "identifier": "snomed:762713009", + "label": "Charlson Comorbidity Index" + }, + { + "identifier": "snomed:762971000000107", + "label": "Visual analogue mood scale" + }, + { + "identifier": "snomed:763003003", + "label": "University of Texas Wound Classification System" + }, + { + "identifier": "snomed:763080002", + "label": "Bristol Foot Score" + }, + { + "identifier": "snomed:763113009", + "label": "Footwear Suitability Scale" + }, + { + "identifier": "snomed:763114003", + "label": "Foot Function Index" + }, + { + "identifier": "snomed:763121003", + "label": "Leeds Foot Impact Scale" + }, + { + "identifier": "snomed:763234008", + "label": "Patient Global Impression of Improvement" + }, + { + "identifier": "snomed:763235009", + "label": "DEPA (Depth, Extent, Phase and Associated etiology) Score" + }, + { + "identifier": "snomed:763236005", + "label": "MIPI - Mantle Cell Lymphoma International Prognostic Index" + }, + { + "identifier": "snomed:763238006", + "label": "PEDIS (Perfusion, Extent, Depth, Infection and Sensation) scoring system" + }, + { + "identifier": "snomed:763240001", + "label": "Anticholinergic Cognitive Burden Scale" + }, + { + "identifier": "snomed:763241002", + "label": "Manchester Scale for grading hallux valgus" + }, + { + "identifier": "snomed:763245006", + "label": "QRISK2 cardiovascular disease 10 year risk calculator" + }, + { + "identifier": "snomed:763293000", + "label": "Size (area, depth), Sepsis, Arteriopathy, Denervation system" + }, + { + "identifier": "snomed:763298009", + "label": "MOxFQ (Manchester-Oxford Foot Questionnaire) (foot)" + }, + { + "identifier": "snomed:763300009", + "label": "MOxFQ (Manchester-Oxford Foot Questionnaire) (foot and ankle)" + }, + { + "identifier": "snomed:763306003", + "label": "Abbey Pain Scale" + }, + { + "identifier": "snomed:764529000", + "label": "Salford Rheumatoid Arthritis Foot Evaluation Instrument" + }, + { + "identifier": "snomed:765771006", + "label": "Modified Ashworth Scale" + }, + { + "identifier": "snomed:766039003", + "label": "Cognitive Performance Test" + }, + { + "identifier": "snomed:767131006", + "label": "Dysphagia Outcome and Severity Scale" + }, + { + "identifier": "snomed:769390009", + "label": "World Health Organization Adult Attention-Deficit Hyperactivity Disorder Self-Report Scale" + }, + { + "identifier": "snomed:770081000000101", + "label": "Treatment outcomes profile" + }, + { + "identifier": "snomed:770231000000109", + "label": "General practice physical activity questionnaire" + }, + { + "identifier": "snomed:770540000", + "label": "Trauma Screening Questionnaire" + }, + { + "identifier": "snomed:770551000", + "label": "GAS-Light - Goal Attainment Scaling-Light" + }, + { + "identifier": "snomed:770633007", + "label": "EQ-5D-Y (EuroQol Five Dimension (Youth)) instrument" + }, + { + "identifier": "snomed:770656003", + "label": "Standardized Assessment of Concussion" + }, + { + "identifier": "snomed:770753000", + "label": "General Practitioner Assessment of Cognition" + }, + { + "identifier": "snomed:771162001", + "label": "Modified Balance Error Scoring System" + }, + { + "identifier": "snomed:771274008", + "label": "Ferriman-Gallwey scale" + }, + { + "identifier": "snomed:772814007", + "label": "NAFLD (Non-Alcoholic Fatty Liver Disease) fibrosis score" + }, + { + "identifier": "snomed:774093002", + "label": "Global Deterioration Scale" + }, + { + "identifier": "snomed:781128005", + "label": "Braden Scale" + }, + { + "identifier": "snomed:782845000", + "label": "Knee Injury and Osteoarthritis Outcome Score" + }, + { + "identifier": "snomed:787454004", + "label": "Post Anesthetic Recovery score" + }, + { + "identifier": "snomed:787721000000106", + "label": "Learning disability screening questionnaire" + }, + { + "identifier": "snomed:789163003", + "label": "Borg Rating of Perceived Exertion" + }, + { + "identifier": "snomed:789162008", + "label": "Modified Borg dyspnea scale" + }, + { + "identifier": "snomed:789278003", + "label": "Clavien-Dindo complication scale" + }, + { + "identifier": "snomed:791531000000106", + "label": "Rockall risk score" + }, + { + "identifier": "snomed:794051000000105", + "label": "HAS-BLED (hypertension, abnormal renal and/or liver function, stroke, bleeding history or predisposition, labile INR (international normalised ratio), elderly over 65, and drugs and/or alcohol concomitantly) score" + }, + { + "identifier": "snomed:805421000000105", + "label": "Diabetes UK diabetes risk score" + }, + { + "identifier": "snomed:805431000000107", + "label": "Safeguarding children and young people toolkit for general practice (2009 revision)" + }, + { + "identifier": "snomed:805631000000109", + "label": "Biopsychosocial assessment" + }, + { + "identifier": "snomed:809291000000109", + "label": "Comprehensive aphasia test" + }, + { + "identifier": "snomed:809331000000102", + "label": "Joint British Societies cardiovascular disease risk assessment" + }, + { + "identifier": "snomed:809821000000105", + "label": "Cognitive linguistic quick test" + }, + { + "identifier": "snomed:810601000000106", + "label": "Self-completed Leeds assessment of neuropathic symptoms and signs pain scale" + }, + { + "identifier": "snomed:819958009", + "label": "Healthy Eating Index 2015" + }, + { + "identifier": "snomed:820311000000108", + "label": "Depression intensity scale circles" + }, + { + "identifier": "snomed:821531000000101", + "label": "EuroQol five dimension five level scale" + }, + { + "identifier": "snomed:823061000000101", + "label": "World Health Organisation (five) well-being index" + }, + { + "identifier": "snomed:824471000000102", + "label": "Short confusion assessment method" + }, + { + "identifier": "snomed:827211000000104", + "label": "AMS (ageing males' symptoms) scale" + }, + { + "identifier": "snomed:836483005", + "label": "Patient Experience with Treatment and Self-management questionnaire" + }, + { + "identifier": "snomed:836521000000107", + "label": "PHQ-2 - patient health questionnaire 2" + }, + { + "identifier": "snomed:836551000000102", + "label": "GAD-2 (generalised anxiety disorder 2) scale" + }, + { + "identifier": "snomed:836761000000105", + "label": "National Cancer Institute breast cancer risk assessment tool" + }, + { + "identifier": "snomed:836821000000109", + "label": "Edmonton frail scale" + }, + { + "identifier": "snomed:837321000000101", + "label": "Lung function questionnaire" + }, + { + "identifier": "snomed:837671000000105", + "label": "Hypoglycaemia fear survey" + }, + { + "identifier": "snomed:838221000000109", + "label": "Diabetes quality of life questionnaire" + }, + { + "identifier": "snomed:838301000000106", + "label": "Clarke hypoglycaemia awareness questionnaire" + }, + { + "identifier": "snomed:838442002", + "label": "Altman Self-Rating Mania Scale" + }, + { + "identifier": "snomed:838443007", + "label": "Tegner Activity Scale" + }, + { + "identifier": "snomed:838521000000106", + "label": "Heart rate walking speed index" + }, + { + "identifier": "snomed:838651000000102", + "label": "EuroQol five dimension self-report questionnaire" + }, + { + "identifier": "snomed:839781000000108", + "label": "Falls risk assessment tool" + }, + { + "identifier": "snomed:840352000", + "label": "Modified Rankin Scale" + }, + { + "identifier": "snomed:840366005", + "label": "Pelvic Organ Prolapse/Urinary Incontinence Sexual Questionnaire 12" + }, + { + "identifier": "snomed:840418002", + "label": "Yale-Brown Obsessive Compulsive Scale" + }, + { + "identifier": "snomed:840555004", + "label": "Birmingham Vasculitis Activity Score" + }, + { + "identifier": "snomed:842651000000103", + "label": "Modified elderly mobility scale" + }, + { + "identifier": "snomed:844521000000102", + "label": "Lindop Parkinson's assessment scale" + }, + { + "identifier": "snomed:845231000000103", + "label": "Dyspnoea, airflow obstruction, smoking status, exacerbation frequency index" + }, + { + "identifier": "snomed:845621000000102", + "label": "Gold standards framework prognostic indicator" + }, + { + "identifier": "snomed:845791000000106", + "label": "Black fracture index" + }, + { + "identifier": "snomed:846701000000105", + "label": "Kamath and Stothard carpal tunnel syndrome questionnaire" + }, + { + "identifier": "snomed:848061000000106", + "label": "QFracture risk calculator" + }, + { + "identifier": "snomed:848121000000104", + "label": "Post-traumatic stress disorder impact of events scale" + }, + { + "identifier": "snomed:848641000000104", + "label": "QCancer risk calculator" + }, + { + "identifier": "snomed:848661000000103", + "label": "QCancer colorectal cancer risk calculator" + }, + { + "identifier": "snomed:848681000000107", + "label": "QCancer lung cancer risk calculator" + }, + { + "identifier": "snomed:848701000000109", + "label": "QCancer gastro-oesophageal cancer risk calculator" + }, + { + "identifier": "snomed:848721000000100", + "label": "QCancer renal cancer risk calculator" + }, + { + "identifier": "snomed:848741000000107", + "label": "QCancer ovarian cancer risk calculator" + }, + { + "identifier": "snomed:848761000000108", + "label": "QCancer pancreatic cancer risk calculator" + }, + { + "identifier": "snomed:848941000000109", + "label": "QKidney disease risk calculator" + }, + { + "identifier": "snomed:848981000000101", + "label": "QThrombosis risk calculator" + }, + { + "identifier": "snomed:849941000000102", + "label": "Pelvic organ prolapse symptom score" + }, + { + "identifier": "snomed:850851000000102", + "label": "Combined Predictive Model" + }, + { + "identifier": "snomed:851901000000101", + "label": "Obesity and weight loss quality of life questionnaire" + }, + { + "identifier": "snomed:852151000000108", + "label": "Weight-related symptom measure" + }, + { + "identifier": "snomed:858691000000106", + "label": "Developmental behaviour checklist" + }, + { + "identifier": "snomed:858731000000100", + "label": "Nisonger child behaviour rating form" + }, + { + "identifier": "snomed:858711000000108", + "label": "Sheffield learning disabilities outcome measure" + }, + { + "identifier": "snomed:858831000000106", + "label": "DD-CGAS (Developmental Disabilities - Children's Global Assessment Scale)" + }, + { + "identifier": "snomed:859261000000108", + "label": "National Early Warning Score - Royal College of Physicians" + }, + { + "identifier": "snomed:859231000000103", + "label": "MRC (Medical Research Council) breathlessness scale" + }, + { + "identifier": "snomed:859351000000102", + "label": "Montreal cognitive assessment" + }, + { + "identifier": "snomed:861041000000105", + "label": "Decision support tool for NHS continuing healthcare" + }, + { + "identifier": "snomed:862451000000109", + "label": "CORC (Child and Adolescent Mental Health Services Outcome Research Consortium) goal based outcome measure" + }, + { + "identifier": "snomed:862621000000102", + "label": "CURB (confusion, urea, respiratory rate, blood pressure) score" + }, + { + "identifier": "snomed:863001000000108", + "label": "Podiatry objective clinical score" + }, + { + "identifier": "snomed:863501000000102", + "label": "QDiabetes risk calculator" + }, + { + "identifier": "snomed:863931000000101", + "label": "Cognitive linguistic quick test visuospatial domain" + }, + { + "identifier": "snomed:863941000000105", + "label": "Cognitive linguistic quick test language domain" + }, + { + "identifier": "snomed:863951000000108", + "label": "Cognitive linguistic quick test executive functions domain" + }, + { + "identifier": "snomed:863961000000106", + "label": "Cognitive linguistic quick test memory domain" + }, + { + "identifier": "snomed:863971000000104", + "label": "Cognitive linguistic quick test attention domain" + }, + { + "identifier": "snomed:864341000000106", + "label": "Johns Hopkins adjusted clinical groups system" + }, + { + "identifier": "snomed:864371000000100", + "label": "Bupa Health Dialog risk stratification tool" + }, + { + "identifier": "snomed:865914000", + "label": "Preparedness for Caregiving Scale" + }, + { + "identifier": "snomed:865915004", + "label": "Bakas Caregiving Outcomes Scales" + }, + { + "identifier": "snomed:865919005", + "label": "Sleep Inertia Questionnaire" + }, + { + "identifier": "snomed:865921000", + "label": "Autism Spectrum Screening Questionnaire" + }, + { + "identifier": "snomed:865924008", + "label": "Cutaneous Dermatomyositis Disease Area and Severity Index" + }, + { + "identifier": "snomed:865926005", + "label": "Headache Impact Test-6" + }, + { + "identifier": "snomed:865927001", + "label": "Emotional Stress Reaction Questionnaire" + }, + { + "identifier": "snomed:865931007", + "label": "Scale for Assessment and Rating of Ataxia" + }, + { + "identifier": "snomed:865932000", + "label": "Mood Disorder Questionnaire" + }, + { + "identifier": "snomed:865935003", + "label": "Patient Health Questionnaire-4" + }, + { + "identifier": "snomed:865963001", + "label": "modified Severity Weighted Assessment Tool" + }, + { + "identifier": "snomed:865965008", + "label": "Psychiatric Research Interview for Substance and Mental Disorders" + }, + { + "identifier": "snomed:865968005", + "label": "Mini International Neuropsychiatric Interview for Children and Adolescents" + }, + { + "identifier": "snomed:865991009", + "label": "CogState Brief Battery" + }, + { + "identifier": "snomed:865998003", + "label": "Columbia Suicide Severity Rating Scale" + }, + { + "identifier": "snomed:865999006", + "label": "Clinical Global Impression" + }, + { + "identifier": "snomed:866023006", + "label": "Opioid Risk Tool" + }, + { + "identifier": "snomed:866311000000102", + "label": "Psoriasis area and severity index" + }, + { + "identifier": "snomed:867151000000102", + "label": "LACE (length of stay, acuity of admission, comorbidities and emergency department visits) index scoring tool for death or readmission risk assessment" + }, + { + "identifier": "snomed:868183002", + "label": "Functional Assessment of Cancer Therapy - Brain" + }, + { + "identifier": "snomed:870179002", + "label": "modified Medical Research Council Dyspnea Scale" + }, + { + "identifier": "snomed:870181000", + "label": "Brief Esophageal Dysphagia Questionnaire" + }, + { + "identifier": "snomed:870183002", + "label": "Gastroesophageal Reflux Disease-Health Related Quality of Life questionnaire" + }, + { + "identifier": "snomed:870186005", + "label": "Behavior Assessment System for Children, Second Edition" + }, + { + "identifier": "snomed:870188006", + "label": "American Neurogastroenterology and Motility Society Gastroparesis Cardinal Symptom Index-Daily Diary" + }, + { + "identifier": "snomed:870631000000105", + "label": "QStroke 10 year risk of stroke calculator" + }, + { + "identifier": "snomed:870721000000102", + "label": "ASQ-SE - ages and stages questionnaires - social-emotional" + }, + { + "identifier": "snomed:870951000000109", + "label": "Eron severity classification system for skin and soft tissue infections" + }, + { + "identifier": "snomed:872331000000100", + "label": "Wagner ulcer classification system" + }, + { + "identifier": "snomed:872521000000106", + "label": "Dutch Lipid Clinic Network diagnostic criteria for familial hypercholesterolaemia" + }, + { + "identifier": "snomed:872691000000105", + "label": "SPARRA (Scottish patients at risk of readmission and admission) algorithm" + }, + { + "identifier": "snomed:878481000000109", + "label": "QAdmissions emergency admission risk calculator" + }, + { + "identifier": "snomed:880141000000104", + "label": "Stroke Impact Scale version 3.0" + }, + { + "identifier": "snomed:881471000000106", + "label": "Gross Motor Function Classification System for Cerebral Palsy" + }, + { + "identifier": "snomed:883371000000101", + "label": "Leeds Revised Acne Grading System" + }, + { + "identifier": "snomed:883881000000107", + "label": "LYMQOL (Lymphoedema Quality of Life Tool) - arm" + }, + { + "identifier": "snomed:883961000000109", + "label": "Thrombolysis In Myocardial Infarction risk score for unstable angina or non-ST-segment-elevation myocardial infarction" + }, + { + "identifier": "snomed:885491000000107", + "label": "Warwick-Edinburgh Mental Well-being Scale" + }, + { + "identifier": "snomed:886051000000104", + "label": "OCAIRS (Occupational Circumstances Assessment Interview and Rating Scale) version 4.0" + }, + { + "identifier": "snomed:886191000000106", + "label": "DASH (Domestic Abuse, Stalking and Harassment and Honour Based Violence) 2009 Risk Checklist" + }, + { + "identifier": "snomed:886331000000108", + "label": "GULP Dehydration Risk Screening Tool" + }, + { + "identifier": "snomed:888371000000106", + "label": "LYMQOL (Lymphoedema Quality of Life Tool) - leg" + }, + { + "identifier": "snomed:889001000000109", + "label": "HCL-32-R1 - hypomania checklist 32 item revised" + }, + { + "identifier": "snomed:889291000000108", + "label": "Scot-PASQ - Scottish Physical Activity Screening Questions" + }, + { + "identifier": "snomed:895536002", + "label": "PG-SGA - Patient-Generated Subjective Global Assessment" + }, + { + "identifier": "snomed:895537006", + "label": "MNA - Mini Nutritional Assessment" + }, + { + "identifier": "snomed:895761000000107", + "label": "CIWA-Ar - Clinical Institute Withdrawal Assessment for Alcohol scale, revised" + }, + { + "identifier": "snomed:896191000000105", + "label": "TYM (Test Your Memory) test" + }, + { + "identifier": "snomed:897114006", + "label": "Simple Endoscopic Score for Crohn's Disease" + }, + { + "identifier": "snomed:897117004", + "label": "Frequency, Intensity, and Burden of Side Effects Ratings scale" + }, + { + "identifier": "snomed:897121000000109", + "label": "Westley Croup Score" + }, + { + "identifier": "snomed:897479004", + "label": "Spence Children's Anxiety Scale" + }, + { + "identifier": "snomed:897481002", + "label": "Spence Children's Anxiety Scale - Parent Version" + }, + { + "identifier": "snomed:897482009", + "label": "Spence Children's Anxiety Scale - Child Version" + }, + { + "identifier": "snomed:898531000000100", + "label": "Johns Hopkins Adjusted Clinical Groups - Resource Utilization Band category" + }, + { + "identifier": "snomed:898831000000103", + "label": "Glamorgan paediatric pressure ulcer risk assessment scale" + }, + { + "identifier": "snomed:901361000000101", + "label": "Australia-modified Karnofsky Performance Status scale" + }, + { + "identifier": "snomed:901741000000103", + "label": "Palliative Care Outcomes Collaboration Assessment Toolkit" + }, + { + "identifier": "snomed:902131000000104", + "label": "Resource Utilisation Groups - Activities of Daily Living scale" + }, + { + "identifier": "snomed:902441000000104", + "label": "Palliative Care Problem Severity Score" + }, + { + "identifier": "snomed:904311000000100", + "label": "Bath Ankylosing Spondylitis Functional Index" + }, + { + "identifier": "snomed:905271000000101", + "label": "Childhood Asthma Control Test" + }, + { + "identifier": "snomed:908081000000102", + "label": "Eyberg Child Behaviour Inventory" + }, + { + "identifier": "snomed:908141000000106", + "label": "Rivermead Mobility Index" + }, + { + "identifier": "snomed:908741000000107", + "label": "University of Washington Quality of Life questionnaire version 4" + }, + { + "identifier": "snomed:908811000000101", + "label": "Wright and Ayre Stuttering Self-rating Profile" + }, + { + "identifier": "snomed:908991000000104", + "label": "Parents Evaluation of Developmental Status: Developmental Milestones" + }, + { + "identifier": "snomed:909401000000106", + "label": "Diabetes Distress Scale 2 item" + }, + { + "identifier": "snomed:909441000000109", + "label": "Diabetes Distress Scale 17 item" + }, + { + "identifier": "snomed:910191000000102", + "label": "Goal Attainment Scaling" + }, + { + "identifier": "snomed:910301000000106", + "label": "National Obesity Observatory Standard Evaluation Framework for weight management interventions - participant satisfaction with intervention" + }, + { + "identifier": "snomed:910401000000101", + "label": "Symptom Assessment Scale" + }, + { + "identifier": "snomed:91171000000103", + "label": "Health of the Nation Outcome Scale for older adults" + }, + { + "identifier": "snomed:91181000000101", + "label": "Health of the Nation Outcome Scale for Children and Adolescents" + }, + { + "identifier": "snomed:91191000000104", + "label": "Health of the Nation Outcome Scale for learning disabilities" + }, + { + "identifier": "snomed:91201000000102", + "label": "Health of the Nation Outcome Scale-secure: Rating scale" + }, + { + "identifier": "snomed:91211000000100", + "label": "Health of the Nation Outcome Scale-secure: Rating scale A - potential harm to others" + }, + { + "identifier": "snomed:91221000000106", + "label": "Health of the Nation Outcome Scale-secure: Rating scale B - potential self harm or neglect" + }, + { + "identifier": "snomed:91231000000108", + "label": "HoNOS (Health of the Nation Outcome Scale) - secure: Rating scale C - need for buildings security to prevent escape" + }, + { + "identifier": "snomed:91241000000104", + "label": "Health of the Nation Outcome Scale-secure: Rating scale D - need for safely staffed living environment" + }, + { + "identifier": "snomed:91251000000101", + "label": "Health of the Nation Outcome Scale-secure: Rating scale E - need for escort on leave" + }, + { + "identifier": "snomed:91261000000103", + "label": "Health of the Nation Outcome Scale-secure: Rating scale F - potential harm to individual from others" + }, + { + "identifier": "snomed:91271000000105", + "label": "Health of the Nation Outcome Scale-secure: Rating scale G - need for specialist clinical procedures" + }, + { + "identifier": "snomed:91281000000107", + "label": "Health of the Nation Outcome Scale for working age adults" + }, + { + "identifier": "snomed:912821000000107", + "label": "Gold Standards Framework After Death Analysis Audit Tool" + }, + { + "identifier": "snomed:913011000000103", + "label": "Sure Start Language Measure" + }, + { + "identifier": "snomed:913051000000104", + "label": "Sure Start Language Measure, revised" + }, + { + "identifier": "snomed:915011000000102", + "label": "Schedule of Growing Skills II" + }, + { + "identifier": "snomed:915471000000103", + "label": "Getting It Right For Every Child assessment" + }, + { + "identifier": "snomed:921631000000109", + "label": "Glasgow Antipsychotic Side-effect Scale" + }, + { + "identifier": "snomed:921741000000108", + "label": "SINBAD (site, ischaemia, neuropathy, bacterial infection and depth) wound classification" + }, + { + "identifier": "snomed:921961000000106", + "label": "DemTect scale" + }, + { + "identifier": "snomed:922031000000108", + "label": "SURE (Sure of myself, Understand information, Risk-benefit ratio, Encouragement) test" + }, + { + "identifier": "snomed:922511000000105", + "label": "GFI - Groningen Frailty Indicator" + }, + { + "identifier": "snomed:922531000000102", + "label": "FI - Frailty Index" + }, + { + "identifier": "snomed:922571000000100", + "label": "Mini-Cog" + }, + { + "identifier": "snomed:925401000000103", + "label": "PAM - Patient Activation Measure" + }, + { + "identifier": "snomed:927321000000106", + "label": "Short Physical Performance Battery" + }, + { + "identifier": "snomed:927551000000107", + "label": "Oxford Cognitive Screen" + }, + { + "identifier": "snomed:928751000000101", + "label": "Generic Risk Indicators (National Risk Framework to Support the Assessment of Children and Young People)" + }, + { + "identifier": "snomed:931051000000106", + "label": "Graded Care Profile" + }, + { + "identifier": "snomed:931171000000103", + "label": "Resistance Related Risk Indicators (National Risk Framework to Support the Assessment of Children and Young People)" + }, + { + "identifier": "snomed:931231000000108", + "label": "My World Triangle assessment tool" + }, + { + "identifier": "snomed:931551000000103", + "label": "Carer Support Needs Assessment Tool" + }, + { + "identifier": "snomed:931681000000105", + "label": "Measure Yourself Medical Outcome Profile" + }, + { + "identifier": "snomed:932461000000105", + "label": "Improving Access to Psychological Therapies programme Work and Social Adjustment Scale - work" + }, + { + "identifier": "snomed:932481000000101", + "label": "Improving Access to Psychological Therapies programme Work and Social Adjustment Scale - home management" + }, + { + "identifier": "snomed:932501000000105", + "label": "Improving Access to Psychological Therapies programme Work and Social Adjustment Scale - social leisure activities" + }, + { + "identifier": "snomed:932521000000101", + "label": "Improving Access to Psychological Therapies programme Work and Social Adjustment Scale - private leisure activities" + }, + { + "identifier": "snomed:932541000000108", + "label": "Improving Access to Psychological Therapies programme Work and Social Adjustment Scale - relationships" + }, + { + "identifier": "snomed:933161000000106", + "label": "Malcomess Care Aims Model" + }, + { + "identifier": "snomed:934131000000103", + "label": "Everyday Cognition questionnaire" + }, + { + "identifier": "snomed:936091000000107", + "label": "QBleed risk calculator" + }, + { + "identifier": "snomed:938731000000105", + "label": "ELF (Enhanced Liver Fibrosis) score" + }, + { + "identifier": "snomed:938951000000101", + "label": "FIB-4 (Fibrosis-4) index" + }, + { + "identifier": "snomed:939291000000108", + "label": "PYMS - Paediatric Yorkhill Malnutrition Score" + }, + { + "identifier": "snomed:939351000000108", + "label": "Severity of Alopecia Tool" + }, + { + "identifier": "snomed:939991000000101", + "label": "Parenting Daily Hassles Scale" + }, + { + "identifier": "snomed:940031000000105", + "label": "Social Satisfaction Questionnaire" + }, + { + "identifier": "snomed:944681000000109", + "label": "Clinical Outcomes in Routine Evaluation - Learning Disabilities" + }, + { + "identifier": "snomed:951681000000109", + "label": "Dizziness Handicap Inventory" + }, + { + "identifier": "snomed:952581000000104", + "label": "ChildSafe Trigger Tool" + }, + { + "identifier": "snomed:955141000000105", + "label": "Centor criteria" + }, + { + "identifier": "snomed:956991000000107", + "label": "PCS - Pain Catastrophizing Scale" + }, + { + "identifier": "snomed:958061000000101", + "label": "Revised Children's Anxiety and Depression Scale" + }, + { + "identifier": "snomed:958071000000108", + "label": "Revised Children's Anxiety and Depression Scale - Parent Version" + }, + { + "identifier": "snomed:959531000000108", + "label": "Eating Disorder Examination Questionnaire - Adolescents, 14-16 years" + }, + { + "identifier": "snomed:959651000000102", + "label": "SCORE Index of Family Function and Change - 15" + }, + { + "identifier": "snomed:959921000000103", + "label": "Goal Progress Chart - Child/Young Person" + }, + { + "identifier": "snomed:960161000000109", + "label": "Revised Child Impact of Events Scale" + }, + { + "identifier": "snomed:960191000000103", + "label": "MAMS (Me and My School) Questionnaire" + }, + { + "identifier": "snomed:960231000000107", + "label": "Outcome Rating Scale" + }, + { + "identifier": "snomed:960301000000107", + "label": "Child Outcome Rating Scale" + }, + { + "identifier": "snomed:960401000000102", + "label": "Modified Strengths and Difficulties Questionnaire 8" + }, + { + "identifier": "snomed:960431000000108", + "label": "Session Rating Scale" + }, + { + "identifier": "snomed:960491000000109", + "label": "Young Person's Clinical Outcomes in Routine Evaluation" + }, + { + "identifier": "snomed:960951000000109", + "label": "Brief Parental Self-Efficacy Scale" + }, + { + "identifier": "snomed:961211000000107", + "label": "How Are Things? Behavioural Difficulties (Oppositional Defiant Disorder) - Parent/Carer" + }, + { + "identifier": "snomed:961241000000108", + "label": "Modified Strengths and Difficulties Questionnaire 8 - Parent" + }, + { + "identifier": "snomed:961271000000102", + "label": "Strengths and Difficulties Questionnaire, self-rated for 11-17 year olds" + }, + { + "identifier": "snomed:961291000000103", + "label": "Strengths and Difficulties Questionnaire for parents or educators of 2-4 year olds" + }, + { + "identifier": "snomed:961141000000103", + "label": "ESQ (Experience of Service Questionnaire) for parent or carer" + }, + { + "identifier": "snomed:961301000000104", + "label": "Strengths and Difficulties Questionnaire for parents or teachers of 4-17 year olds" + }, + { + "identifier": "snomed:961331000000105", + "label": "Session Feedback Questionnaire" + }, + { + "identifier": "snomed:963531000000101", + "label": "Health of the Nation Outcome Scale for Children and Adolescents - Parent's assessment" + }, + { + "identifier": "snomed:966351000000106", + "label": "ManChEWS - Manchester Children's Hospital Early Warning Score" + }, + { + "identifier": "snomed:966771000000101", + "label": "Family Origin Questionnaire" + }, + { + "identifier": "snomed:966831000000109", + "label": "POPS - Paediatric Observation Priority Score" + }, + { + "identifier": "snomed:968081000000101", + "label": "Apraxia Battery for Adults - Second Edition" + }, + { + "identifier": "snomed:973221000000109", + "label": "Prisma 7 Questionnaire" + }, + { + "identifier": "snomed:975361000000106", + "label": "Communication Assessment Profile" + }, + { + "identifier": "snomed:975521000000107", + "label": "MacMillan Readers Level Test" + }, + { + "identifier": "snomed:977141000000100", + "label": "STOPBang questionnaire" + }, + { + "identifier": "snomed:977221000000103", + "label": "WHODAS (World Health Organization Disability Assessment Schedule) 2.0" + }, + { + "identifier": "snomed:977241000000105", + "label": "New Reynell Developmental Language Scales" + }, + { + "identifier": "snomed:977261000000106", + "label": "Graded Word Spelling Test" + }, + { + "identifier": "snomed:977291000000100", + "label": "SPI (Stuttering Prediction Instrument) for Young Children" + }, + { + "identifier": "snomed:977301000000101", + "label": "SSI (Stuttering Severity Instrument) for Children and Adults" + }, + { + "identifier": "snomed:977311000000104", + "label": "CVLT-II (California Verbal Learning Test Second Edition)" + }, + { + "identifier": "snomed:977321000000105", + "label": "CVLT-C (California Verbal Learning Test - Children's Version)" + }, + { + "identifier": "snomed:978481000000100", + "label": "St. Mark's incontinence score" + }, + { + "identifier": "snomed:978971000000107", + "label": "Buffalo III Voice Profile" + }, + { + "identifier": "snomed:979121000000103", + "label": "STDAS-2 (Screening Test for Developmental Apraxia of Speech - Second Edition)" + }, + { + "identifier": "snomed:979211000000101", + "label": "FCP-R (Functional Communication Profile Revised)" + }, + { + "identifier": "snomed:979241000000100", + "label": "GHQ-12 (General Health Questionnaire 12)" + }, + { + "identifier": "snomed:979261000000104", + "label": "GHQ-20 (General Health Questionnaire 20)" + }, + { + "identifier": "snomed:979291000000105", + "label": "GHQ-28 (General Health Questionnaire 28)" + }, + { + "identifier": "snomed:979331000000103", + "label": "GHQ-30 (General Health Questionnaire 30)" + }, + { + "identifier": "snomed:979521000000109", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 1 - overactive, aggressive, disruptive or agitated behaviour" + }, + { + "identifier": "snomed:979531000000106", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 2 - non-accidental self-injury" + }, + { + "identifier": "snomed:979541000000102", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 3 - problem drinking or drug-taking" + }, + { + "identifier": "snomed:979551000000104", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 4 - cognitive problems" + }, + { + "identifier": "snomed:979561000000101", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 5 - physical illness or disability problems" + }, + { + "identifier": "snomed:979571000000108", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 6 - problems associated with hallucinations and delusions" + }, + { + "identifier": "snomed:979581000000105", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 7 - problems with depressed mood" + }, + { + "identifier": "snomed:979591000000107", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 8 - other mental and behavioural problems" + }, + { + "identifier": "snomed:979601000000101", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 9 - problems with relationships" + }, + { + "identifier": "snomed:979611000000104", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 10 - problems with activities of daily living" + }, + { + "identifier": "snomed:979621000000105", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 11 - problems with living conditions" + }, + { + "identifier": "snomed:979631000000107", + "label": "HoNOS (Health of the Nation Outcome Scales) for working age adults rating scale 12 - problems with occupation and activities" + }, + { + "identifier": "snomed:979781000000103", + "label": "TWF-3 (Test of Word Finding - Third Edition)" + }, + { + "identifier": "snomed:979881000000107", + "label": "GFTA-2 (Goldman-Fristoe Test for Articulation - 2)" + }, + { + "identifier": "snomed:979901000000105", + "label": "GFTA-3 (Goldman-Fristoe Test for Articulation - Third Edition)" + }, + { + "identifier": "snomed:980231000000109", + "label": "Revised Kendrick Battery for detection of dementia in the elderly" + }, + { + "identifier": "snomed:980291000000105", + "label": "NSST - Northwestern Syntax Screening Test" + }, + { + "identifier": "snomed:980351000000105", + "label": "Young Townson FootSkin Scale for Diabetic Neuropathy" + }, + { + "identifier": "snomed:980881000000107", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 1 - behavioural disturbance" + }, + { + "identifier": "snomed:980901000000105", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 10 - problems with activities of daily living" + }, + { + "identifier": "snomed:980921000000101", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 11 - overall problems with living conditions" + }, + { + "identifier": "snomed:980931000000104", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 12 - problems with work and leisure activities - quality of daytime environment" + }, + { + "identifier": "snomed:980941000000108", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 2 - non-accidental self-injury" + }, + { + "identifier": "snomed:980951000000106", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 3 - problem-drinking or drug-use" + }, + { + "identifier": "snomed:980961000000109", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 4 - cognitive problems" + }, + { + "identifier": "snomed:980971000000102", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 5 - problems related to physical illness/disability" + }, + { + "identifier": "snomed:980981000000100", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 6 - problems associated with hallucinations and/or delusions (or false beliefs)" + }, + { + "identifier": "snomed:980991000000103", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 7 - problems with depressive symptoms" + }, + { + "identifier": "snomed:981001000000104", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 8 - other mental and behavioural problems" + }, + { + "identifier": "snomed:981011000000102", + "label": "HoNOS 65+ (Health of the Nation Outcome Scales 65+) rating scale 9 - problems with social or supportive relationships" + }, + { + "identifier": "snomed:981031000000105", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 1 - disruptive, antisocial or aggressive behaviour" + }, + { + "identifier": "snomed:981041000000101", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 10 - peer relationships" + }, + { + "identifier": "snomed:981051000000103", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 11 - self care and independence" + }, + { + "identifier": "snomed:981061000000100", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 12 - family life and relationships" + }, + { + "identifier": "snomed:981071000000107", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 13 - poor school attendance" + }, + { + "identifier": "snomed:981081000000109", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 14 - lack of knowledge - nature of difficulties" + }, + { + "identifier": "snomed:981091000000106", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 15 - lack of information - services/management" + }, + { + "identifier": "snomed:981101000000103", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 2 - overactivity, attention and concentration" + }, + { + "identifier": "snomed:981111000000101", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 3 - non-accidental self injury" + }, + { + "identifier": "snomed:981121000000107", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 4 - alcohol, substance/solvent misuse" + }, + { + "identifier": "snomed:981131000000109", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 5 - scholastic or language skills" + }, + { + "identifier": "snomed:981141000000100", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 6 - physical illness or disability problems" + }, + { + "identifier": "snomed:981151000000102", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 7 - hallucinations and delusions" + }, + { + "identifier": "snomed:981161000000104", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 8 - non-organic somatic symptoms" + }, + { + "identifier": "snomed:981171000000106", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) rating scale 9 - emotional and related symptoms" + }, + { + "identifier": "snomed:981311000000104", + "label": "M-WCST - Modified Wisconsin Card Sorting Test" + }, + { + "identifier": "snomed:981341000000103", + "label": "NARA (Neale Analysis of Reading Ability) - Revised Edition" + }, + { + "identifier": "snomed:981351000000100", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) section A" + }, + { + "identifier": "snomed:981371000000109", + "label": "HoNOSCA (Health of the Nation Outcome Scales for Children and Adolescents) section B" + }, + { + "identifier": "snomed:981561000000109", + "label": "IPTA-3 (Illinois Test of Psycholinguistic Abilities - Third Edition)" + }, + { + "identifier": "snomed:981611000000106", + "label": "RCBA-2 (Reading Comprehension Battery for Aphasia - Second Edition)" + }, + { + "identifier": "snomed:981641000000107", + "label": "TACL-3 (Test for Auditory Comprehension of Language - Third Edition)" + }, + { + "identifier": "snomed:981671000000101", + "label": "TACL-4 (Test for Auditory Comprehension of Language - Fourth Edition)" + }, + { + "identifier": "snomed:981711000000100", + "label": "TROG-2 (Test for Reception of Grammar - Version 2)" + }, + { + "identifier": "snomed:981801000000108", + "label": "TOPL-2 (Test of Pragmatic Language Skills - Second Edition)" + }, + { + "identifier": "snomed:981871000000100", + "label": "GSRT (Gray Silent Reading Tests)" + }, + { + "identifier": "snomed:981901000000100", + "label": "SON-R (Snijders-Oomen Non-verbal Intelligence Scale - Revised) 2.5-7" + }, + { + "identifier": "snomed:981911000000103", + "label": "SON-R (Snijders-Oomen Non-verbal Intelligence Scale - Revised) 6-40" + }, + { + "identifier": "snomed:982311000000105", + "label": "TAPS-3 (Test of Auditory Processing Skills - Third Edition)" + }, + { + "identifier": "snomed:982511000000102", + "label": "REEL-2 (Receptive Expressive Emergent Language Scale - Second Edition)" + }, + { + "identifier": "snomed:982521000000108", + "label": "REEL-3 (Receptive Expressive Emergent Language Test - Third Edition)" + }, + { + "identifier": "snomed:982571000000107", + "label": "RBMT-3 (Rivermead Behavioral Memory Test - Third Edition)" + }, + { + "identifier": "snomed:982601000000100", + "label": "TOLD-4 (Test of Language Development - Fourth Edition)" + }, + { + "identifier": "snomed:982631000000106", + "label": "Vineland Adaptive Behavior Scales - Second Edition" + }, + { + "identifier": "snomed:982661000000101", + "label": "WAB-R (Western Aphasia Battery - Revised)" + }, + { + "identifier": "snomed:982761000000106", + "label": "SCAN-C Test for Auditory Processing Disorders in Children" + }, + { + "identifier": "snomed:982791000000100", + "label": "SCAN-A Test for Auditory Processing Disorders in Adolescents and Adults" + }, + { + "identifier": "snomed:982821000000105", + "label": "SCAN-3C Test for Auditory Processing Disorders in Children" + }, + { + "identifier": "snomed:982851000000100", + "label": "SCAN-3A Test for Auditory Processing Disorders in Children" + }, + { + "identifier": "snomed:982881000000106", + "label": "TTFC-2 (Token Test for Children - Second Edition)" + }, + { + "identifier": "snomed:982981000000104", + "label": "EDE-A (Eating Disorder Examination Questionnaire - Adolescents) 14-16 years - eating concern subscale" + }, + { + "identifier": "snomed:982991000000102", + "label": "EDE-A (Eating Disorder Examination Questionnaire - Adolescents) 14-16 years - restraint subscale" + }, + { + "identifier": "snomed:983001000000103", + "label": "Eating Disorder Examination Questionnaire - Adolescents, 14-16 years - shape concern subscale" + }, + { + "identifier": "snomed:983011000000101", + "label": "EDE-A (Eating Disorder Examination Questionnaire - Adolescents) 14-16 years - weight concern subscale" + }, + { + "identifier": "snomed:983021000000107", + "label": "Wepman Auditory Discrimination Test - Second Edition" + }, + { + "identifier": "snomed:983051000000102", + "label": "DDST-II (Denver Developmental Screening Test - Second Edition)" + }, + { + "identifier": "snomed:983101000000102", + "label": "CADL-2 (Communication Abilities of Daily Living - Second Edition)" + }, + { + "identifier": "snomed:983131000000108", + "label": "PLS-4 (Preschool Language Scale - Fourth Edition)" + }, + { + "identifier": "snomed:983171000000105", + "label": "PLS-5 (Preschool Language Scale - Fifth Edition)" + }, + { + "identifier": "snomed:983201000000106", + "label": "MAMS (Me and My School) Questionnaire behavioural difficulties subscale" + }, + { + "identifier": "snomed:983231000000100", + "label": "Assessment of Intelligibility of Dysarthric Speech" + }, + { + "identifier": "snomed:983271000000103", + "label": "Modified Strengths and Difficulties Questionnaire 8 - Parent - Impact subscale" + }, + { + "identifier": "snomed:983391000000107", + "label": "BBCS - Bracken Basic Concept Scale" + }, + { + "identifier": "snomed:983411000000107", + "label": "BBCS:E - Bracken Basic Concept Scale: Expressive" + }, + { + "identifier": "snomed:983421000000101", + "label": "BBCS-3:R - Bracken Basic Concept Scale - Third Edition: Receptive" + }, + { + "identifier": "snomed:983531000000103", + "label": "Renfrew Action Picture Test - Revised" + }, + { + "identifier": "snomed:983561000000108", + "label": "VIP (Voice Impact Profile)" + }, + { + "identifier": "snomed:983591000000102", + "label": "Yale Swallow Protocol" + }, + { + "identifier": "snomed:983771000000109", + "label": "VPAS - Vocal Profile Analysis Scheme" + }, + { + "identifier": "snomed:983881000000102", + "label": "BEST-2 (Bedside Evaluation Screening Test - Second Edition)" + }, + { + "identifier": "snomed:983981000000109", + "label": "Listening Checklist" + }, + { + "identifier": "snomed:984171000000108", + "label": "Raven's Advanced Progressive Matrices" + }, + { + "identifier": "snomed:984341000000100", + "label": "CELF-4UK - Clinical Evaluation of Language Fundamentals - Fourth Edition UK" + }, + { + "identifier": "snomed:984351000000102", + "label": "CELF-5 - Clinical Evaluation of Language Fundamentals - Fifth Edition" + }, + { + "identifier": "snomed:984441000000106", + "label": "BAS-II - British Ability Scales - Second Edition" + }, + { + "identifier": "snomed:984451000000109", + "label": "BAS-3 - British Ability Scales - Third Edition" + }, + { + "identifier": "snomed:984591000000100", + "label": "MARS - Moss Attention Rating Scale" + }, + { + "identifier": "snomed:984711000000102", + "label": "Rutter A2 scale" + }, + { + "identifier": "snomed:984721000000108", + "label": "Boehm-3 Preschool" + }, + { + "identifier": "snomed:984731000000105", + "label": "Mental Health Clustering Tool Summary Assessments of Risk and Need" + }, + { + "identifier": "snomed:984741000000101", + "label": "Mental Health Clustering Tool Summary Assessments of Risk and Need rating A - agitated behaviour/expansive mood (historical)" + }, + { + "identifier": "snomed:984751000000103", + "label": "Mental Health Clustering Tool Summary Assessments of Risk and Need rating B - repeat self-harm (historical)" + }, + { + "identifier": "snomed:984761000000100", + "label": "Mental Health Clustering Tool Summary Assessments of Risk and Need rating C - safeguarding children and vulnerable dependant adults (historical)" + }, + { + "identifier": "snomed:984771000000107", + "label": "Mental Health Clustering Tool Summary Assessments of Risk and Need rating D - engagement (historical)" + }, + { + "identifier": "snomed:984781000000109", + "label": "Mental Health Clustering Tool Summary Assessments of Risk and Need rating E - vulnerability (historical)" + }, + { + "identifier": "snomed:985051000000101", + "label": "Mental Health Clustering Tool Summary Assessments of Risk and Need rating 13" + }, + { + "identifier": "snomed:985191000000108", + "label": "Beighton 9-point scoring system for joint hypermobility" + }, + { + "identifier": "snomed:985411000000106", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 1 - behavioural problems (directed at others)" + }, + { + "identifier": "snomed:985421000000100", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 2 - behavioural problems directed towards self (self-injury)" + }, + { + "identifier": "snomed:985461000000108", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 3 - other mental and behavioural problems" + }, + { + "identifier": "snomed:985471000000101", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 4 - attention and concentration" + }, + { + "identifier": "snomed:985481000000104", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 5 - memory and orientation" + }, + { + "identifier": "snomed:985491000000102", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 6 - communication (problems with understanding)" + }, + { + "identifier": "snomed:985501000000108", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 7 - communication (problems with expression)" + }, + { + "identifier": "snomed:985511000000105", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 8 - problems associated with hallucinations and delusions" + }, + { + "identifier": "snomed:985521000000104", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 9 - problems associated with mood changes" + }, + { + "identifier": "snomed:985541000000106", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 10 - problems with sleeping" + }, + { + "identifier": "snomed:985551000000109", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 11 - problems with eating and drinking" + }, + { + "identifier": "snomed:985561000000107", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 12 - physical problems" + }, + { + "identifier": "snomed:985571000000100", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 13 - seizures" + }, + { + "identifier": "snomed:985581000000103", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 14 - activities of daily living at home" + }, + { + "identifier": "snomed:985591000000101", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 15 - activities of daily living outside the home" + }, + { + "identifier": "snomed:985601000000107", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 16 - level of self-care" + }, + { + "identifier": "snomed:985611000000109", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 17 - problems with relationships" + }, + { + "identifier": "snomed:985621000000103", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 18 - occupation and activities" + }, + { + "identifier": "snomed:985761000000101", + "label": "CELF-3UK - Clinical Evaluation of Language Fundamentals - Third Edition UK" + }, + { + "identifier": "snomed:985841000000109", + "label": "New Salford Sentence Reading Test" + }, + { + "identifier": "snomed:986411000000100", + "label": "CNRep - Children's Test of Nonword Repetition" + }, + { + "identifier": "snomed:986731000000100", + "label": "Current View" + }, + { + "identifier": "snomed:986741000000109", + "label": "Current View Provisional Problem Description item 1 - anxious away from caregivers" + }, + { + "identifier": "snomed:986771000000103", + "label": "Current View Provisional Problem Description item 2 - anxious in social situations" + }, + { + "identifier": "snomed:986801000000100", + "label": "Current View Provisional Problem Description item 3 - anxious generally" + }, + { + "identifier": "snomed:986851000000104", + "label": "Current View Provisional Problem Description item 4 - compelled to do or think things" + }, + { + "identifier": "snomed:986861000000101", + "label": "Current View Provisional Problem Description item 5 - panics" + }, + { + "identifier": "snomed:986871000000108", + "label": "Current View Provisional Problem Description item 6 - avoids going out" + }, + { + "identifier": "snomed:986881000000105", + "label": "Current View Provisional Problem Description item 7 - avoids specific things" + }, + { + "identifier": "snomed:986891000000107", + "label": "Current View Provisional Problem Description item 8 - repetitive problematic behaviours" + }, + { + "identifier": "snomed:986901000000108", + "label": "Current View Provisional Problem Description item 9 - depression/low mood" + }, + { + "identifier": "snomed:986911000000105", + "label": "Current View Provisional Problem Description item 10 - self-harm" + }, + { + "identifier": "snomed:986921000000104", + "label": "Current View Provisional Problem Description item 11 - extremes of mood" + }, + { + "identifier": "snomed:986931000000102", + "label": "Current View Provisional Problem Description item 12 - delusional beliefs and hallucinations" + }, + { + "identifier": "snomed:986941000000106", + "label": "Current View Provisional Problem Description item 13 - drug and alcohol difficulties" + }, + { + "identifier": "snomed:986951000000109", + "label": "Current View Provisional Problem Description item 14 - difficulties sitting still or concentrating" + }, + { + "identifier": "snomed:986961000000107", + "label": "Current View Provisional Problem Description item 15 - behavioural difficulties" + }, + { + "identifier": "snomed:986971000000100", + "label": "Current View Provisional Problem Description item 16 - poses risk to others" + }, + { + "identifier": "snomed:986981000000103", + "label": "Current View Provisional Problem Description item 17 - carer management of CYP (child or young person) behaviour" + }, + { + "identifier": "snomed:986991000000101", + "label": "Current View Provisional Problem Description item 18 - doesn't get to toilet in time" + }, + { + "identifier": "snomed:987001000000107", + "label": "Current View Provisional Problem Description item 19 - disturbed by traumatic event" + }, + { + "identifier": "snomed:987011000000109", + "label": "Current View Provisional Problem Description item 20 - eating issues" + }, + { + "identifier": "snomed:987021000000103", + "label": "Current View Provisional Problem Description item 21 - family relationship difficulties" + }, + { + "identifier": "snomed:987031000000101", + "label": "Current View Provisional Problem Description item 22 - problems in attachment to parent or carer" + }, + { + "identifier": "snomed:987041000000105", + "label": "Current View Provisional Problem Description item 23 - peer relationship difficulties" + }, + { + "identifier": "snomed:987051000000108", + "label": "Current View Provisional Problem Description item 24 - persistent difficulties managing relationships with others" + }, + { + "identifier": "snomed:987061000000106", + "label": "Current View Provisional Problem Description item 25 - does not speak" + }, + { + "identifier": "snomed:987071000000104", + "label": "Current View Provisional Problem Description item 26 - gender discomfort issues" + }, + { + "identifier": "snomed:987081000000102", + "label": "Current View Provisional Problem Description item 27 - unexplained physical symptoms" + }, + { + "identifier": "snomed:987091000000100", + "label": "Current View Provisional Problem Description item 28 - unexplained developmental difficulties" + }, + { + "identifier": "snomed:987101000000108", + "label": "Current View Provisional Problem Description item 29 - self-care issues" + }, + { + "identifier": "snomed:987111000000105", + "label": "Current View Provisional Problem Description item 30 - adjustment to health issues" + }, + { + "identifier": "snomed:987121000000104", + "label": "Current View Contextual Problems - home" + }, + { + "identifier": "snomed:987131000000102", + "label": "Current View Contextual Problems - school, work or training" + }, + { + "identifier": "snomed:987141000000106", + "label": "Current View Contextual Problems - community" + }, + { + "identifier": "snomed:987151000000109", + "label": "Current View Contextual Problems - service engagement" + }, + { + "identifier": "snomed:987161000000107", + "label": "Current View Education, Employment, Training - attendance difficulties" + }, + { + "identifier": "snomed:987171000000100", + "label": "Current View Education, Employment, Training - attainment difficulties" + }, + { + "identifier": "snomed:987581000000106", + "label": "GDO-R - Gesell Developmental Observation-Revised" + }, + { + "identifier": "snomed:987631000000108", + "label": "Holborn Reading Scale" + }, + { + "identifier": "snomed:987661000000103", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 3A - behaviour destructive to property" + }, + { + "identifier": "snomed:987671000000105", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 3B - problems with personal behaviours" + }, + { + "identifier": "snomed:987681000000107", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 3C - rocking, stereotyped and ritualistic behaviour" + }, + { + "identifier": "snomed:987691000000109", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 3D - anxiety, phobias, obsessive or compulsive behaviour" + }, + { + "identifier": "snomed:987701000000109", + "label": "HoNOS-LD (Health of the Nation Outcome Scales for People with Learning Disabilities) rating scale 3E - others" + }, + { + "identifier": "snomed:987961000000105", + "label": "Stanford Binet intelligence scales - fifth edition" + }, + { + "identifier": "snomed:988041000000106", + "label": "Brighton criteria for joint hypermobility syndrome" + }, + { + "identifier": "snomed:988691000000105", + "label": "Hoehn and Yahr Scale" + }, + { + "identifier": "snomed:988701000000105", + "label": "Modified Hoehn and Yahr Scale" + }, + { + "identifier": "snomed:989231000000102", + "label": "Merrill-Palmer-Revised Scales of Development" + }, + { + "identifier": "snomed:989261000000107", + "label": "PAT-2 - Phonological Awareness Test - Second Edition" + }, + { + "identifier": "snomed:989291000000101", + "label": "ASA - Auditory Skills Assessment" + }, + { + "identifier": "snomed:989321000000106", + "label": "ICS - Intelligibility in Context Scale" + }, + { + "identifier": "snomed:989351000000101", + "label": "CAPE-V - Consensus Auditory-Perceptual Evaluation of Voice" + }, + { + "identifier": "snomed:989381000000107", + "label": "Boone Voice Program for Children" + }, + { + "identifier": "snomed:989581000000101", + "label": "HoNOSCA-SR (Health of the Nation Outcome Scales for Children and Adolescents - self-rated)" + }, + { + "identifier": "snomed:989591000000104", + "label": "HoNOS-CR (Health of the Nation Outcome Scales for Children and Adolescents - clinician-rated)" + }, + { + "identifier": "snomed:1024881000000101", + "label": "Mothers' Object Relations Scale - Short Form - Warmth Subscale" + }, + { + "identifier": "snomed:1024901000000103", + "label": "Mothers' Object Relations Scale - Short Form - Invasiveness Subscale" + }, + { + "identifier": "snomed:342951000000107", + "label": "Easy-care assessment tool weighted disability score" + }, + { + "identifier": "snomed:960371000000104", + "label": "Young Child Outcome Rating Scale" + }, + { + "identifier": "snomed:960461000000103", + "label": "Short Warwick-Edinburgh Mental Well-being Scale" + }, + { + "identifier": "snomed:960671000000107", + "label": "Group Session Rating Scale" + }, + { + "identifier": "snomed:960741000000109", + "label": "Child Group Session Rating Scale" + }, + { + "identifier": "snomed:978521000000100", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Depression subscale" + }, + { + "identifier": "snomed:978531000000103", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Generalized Anxiety subscale" + }, + { + "identifier": "snomed:978541000000107", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Obsessions/Compulsions subscale" + }, + { + "identifier": "snomed:978551000000105", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Panic subscale" + }, + { + "identifier": "snomed:978561000000108", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Separation Anxiety subscale" + }, + { + "identifier": "snomed:978571000000101", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Social Phobia subscale" + }, + { + "identifier": "snomed:978581000000104", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Total Anxiety and Depression subscale" + }, + { + "identifier": "snomed:978591000000102", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Total Anxiety subscale" + }, + { + "identifier": "snomed:978601000000108", + "label": "RCADS-P (Revised Children's Anxiety and Depression Scale - Parent Version) - Depression subscale" + }, + { + "identifier": "snomed:978611000000105", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Parent Version - Generalized Anxiety subscale" + }, + { + "identifier": "snomed:978621000000104", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Parent Version - Obsessions/Compulsions subscale" + }, + { + "identifier": "snomed:978631000000102", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Parent Version - Panic subscale" + }, + { + "identifier": "snomed:978641000000106", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Parent Version - Separation Anxiety subscale" + }, + { + "identifier": "snomed:978651000000109", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Parent Version - Social Phobia subscale" + }, + { + "identifier": "snomed:978661000000107", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Parent Version - Total Anxiety and Depression subscale" + }, + { + "identifier": "snomed:978671000000100", + "label": "RCADS (Revised Children's Anxiety and Depression Scale) - Parent Version - Total Anxiety subscale" + }, + { + "identifier": "snomed:983261000000105", + "label": "Modified Strengths and Difficulties Questionnaire 8 - Impact subscale" + }, + { + "identifier": "snomed:983971000000107", + "label": "SCORE Index of Family Function and Change - 15 - Dimension 1 - strengths and adaptability" + }, + { + "identifier": "snomed:984011000000104", + "label": "SCORE Index of Family Function and Change - 15 - Dimension 2 - overwhelmed by difficulties" + }, + { + "identifier": "snomed:984041000000103", + "label": "SCORE Index of Family Function and Change - 15 - Dimension 3 - disrupted communication" + }, + { + "identifier": "snomed:858111000000107", + "label": "ESQ - Experience of Service Questionnaire" + }, + { + "identifier": "snomed:904511000000108", + "label": "Bath Ankylosing Spondylitis Metrology Index" + }, + { + "identifier": "snomed:1287726005", + "label": "DOLOPLUS-2 scale" + }, + { + "identifier": "snomed:1287838009", + "label": "Premature Infant Pain Profile" + }, + { + "identifier": "snomed:1287839001", + "label": "Premature Infant Pain Profile - Revised" + }, + { + "identifier": "snomed:1289999007", + "label": "Gugging Swallowing Screen" + }, + { + "identifier": "snomed:1290002002", + "label": "Alberta Stroke Program Early CT score" + }, + { + "identifier": "snomed:1290005000", + "label": "Duke Activity Scale Index" + }, + { + "identifier": "snomed:1290008003", + "label": "Gijon's social-familial evaluation scale" + }, + { + "identifier": "snomed:1290285005", + "label": "Risk Score for Transport Patients" + }, + { + "identifier": "snomed:1290510006", + "label": "Modified Tardieu Scale" + }, + { + "identifier": "snomed:1290543005", + "label": "Pediatric Canadian Triage and Acuity Scale" + }, + { + "identifier": "snomed:1296649008", + "label": "Bath Ankylosing Spondylitis Metrology Index" + }, + { + "identifier": "snomed:1296651007", + "label": "Bath Ankylosing Spondylitis Functional Index" + }, + { + "identifier": "snomed:1853801000000108", + "label": "Psoriasis Epidemiology Screening Tool" + }, + { + "identifier": "snomed:1853831000000102", + "label": "Clinical Impairment Assessment" + }, + { + "identifier": "snomed:1853861000000107", + "label": "Sleep Condition Indicator 2-item" + }, + { + "identifier": "snomed:1853891000000101", + "label": "Sleep Condition Indicator" + }, + { + "identifier": "snomed:1854881000000101", + "label": "RCADS-25 (Revised Children's Anxiety and Depression Scale-25) Total Depression subscale" + }, + { + "identifier": "snomed:1854891000000104", + "label": "RCADS-25 (Revised Children's Anxiety and Depression Scale-25) Total Anxiety subscale" + }, + { + "identifier": "snomed:1854921000000107", + "label": "RCADS-P-25 (Revised Children's Anxiety and Depression Scale-25 Parent Version) Total Depression subscale" + }, + { + "identifier": "snomed:1854931000000109", + "label": "RCADS-P-25 (Revised Children's Anxiety and Depression Scale-25 Parent Version) Total Anxiety subscale" + }, + { + "identifier": "snomed:1873961000000103", + "label": "Perceived Stress Reactivity Scale" + }, + { + "identifier": "snomed:1874231000000101", + "label": "Rivermead Post Concussion Symptoms Questionnaire" + }, + { + "identifier": "snomed:1874261000000106", + "label": "Adult Carer Quality of Life Questionnaire" + }, + { + "identifier": "snomed:1874411000000108", + "label": "Level of Personality Functioning Scale-Brief Form 2.0" + }, + { + "identifier": "snomed:1874471000000103", + "label": "mJOA (modified Japanese Orthopaedic Association) scale" + }, + { + "identifier": "snomed:1874711000000100", + "label": "Negative Symptom Assessment-4" + }, + { + "identifier": "snomed:1874741000000104", + "label": "DEMQOL (Dementia Quality of Life) version 4" + }, + { + "identifier": "snomed:1874781000000107", + "label": "DEMQOL (Dementia Quality of Life) Carer version 4" + }, + { + "identifier": "snomed:1875041000000102", + "label": "Q-LES-Q-SF - Quality of Life Enjoyment and Satisfaction Questionnaire - Short Form" + }, + { + "identifier": "snomed:1875071000000108", + "label": "IGDT-10 - Ten-Item Internet Gaming Disorder Test" + }, + { + "identifier": "snomed:2007061000000104", + "label": "Mayo-Portland Adaptability Inventory version 4" + }, + { + "identifier": "snomed:751061000124105", + "label": "Asthma Therapy Assessment Questionnaire Adult" + }, + { + "identifier": "snomed:751111000124106", + "label": "Asthma Therapy Assessment Questionnaire for children and adolescents" + }, + { + "identifier": "snomed:1079441000000107", + "label": "NAFLD (Non-Alcoholic Fatty Liver Disease) fibrosis score" + }, + { + "identifier": "snomed:1087241000000107", + "label": "Trauma Screening Questionnaire" + }, + { + "identifier": "snomed:1087341000000100", + "label": "GDS - Global Deterioration Scale" + }, + { + "identifier": "snomed:1095731000000101", + "label": "SAC - Standardized Assessment of Concussion" + }, + { + "identifier": "snomed:1099341000000108", + "label": "mMRC (modified Medical Research Council) dyspnoea scale" + }, + { + "identifier": "snomed:1092051000000101", + "label": "EQ-5D-Y (EuroQol Five Dimension (Youth)) instrument" + }, + { + "identifier": "snomed:1104941000000100", + "label": "PHQ-4 - Patient Health Questionnaire-4" + }, + { + "identifier": "snomed:1092521000000104", + "label": "GAS-Light (Goal Attainment Scaling-Light)" + }, + { + "identifier": "snomed:1092711000000103", + "label": "PAR (Post Anaesthetic Recovery) score" + }, + { + "identifier": "snomed:1092861000000105", + "label": "Modified Balance Error Scoring System" + }, + { + "identifier": "snomed:201721000000109", + "label": "Beck depression inventory second edition score" + }, + { + "identifier": "snomed:504121000000102", + "label": "General practitioner assessment of cognition tool" + }, + { + "identifier": "snomed:509531000000106", + "label": "Braden pressure sore risk scale" + }, + { + "identifier": "snomed:527361000000107", + "label": "Chronic obstructive pulmonary disease assessment test" + }, + { + "identifier": "snomed:835131000000107", + "label": "Modified Rankin scale" + } +]